commit fa4d7a47f8623703f8756254bf166a11cc325ccf parent 978e7216604d37f2f1e2a9dcf1fe576b73b456d5 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(-)
diff --git a/contrib/make_tgz b/contrib/make_tgz @@ -0,0 +1 @@ +python3 setup.py sdist --format=zip,gztar diff --git a/contrib/upload b/contrib/upload @@ -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