tadd tgz and upload script to contrib - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit fa4d7a47f8623703f8756254bf166a11cc325ccf
DIR parent 978e7216604d37f2f1e2a9dcf1fe576b73b456d5
HTML Author: ThomasV <thomasv@electrum.org>
Date: Sun, 1 Jul 2018 15:04:27 +0200
add tgz and upload script to contrib
Diffstat:
A contrib/make_tgz | 1 +
A contrib/upload | 18 ++++++++++++++++++
2 files changed, 19 insertions(+), 0 deletions(-)
---
DIR diff --git a/contrib/make_tgz b/contrib/make_tgz
t@@ -0,0 +1 @@
+python3 setup.py sdist --format=zip,gztar
DIR diff --git a/contrib/upload b/contrib/upload
t@@ -0,0 +1,17 @@
+#!/bin/bash
+
+set -e
+
+version=`git describe --tags`
+echo $version
+
+here=$(dirname "$0")
+cd $here/../dist
+
+sftp -oBatchMode=no -b - thomasv@download.electrum.org << !
+ cd electrum-downloads
+ mkdir $version
+ cd $version
+ mput *
+ bye
+!
+\ No newline at end of file