mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 09:37:31 +00:00
18 lines
234 B
Bash
18 lines
234 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
host=$1
|
|
version=`git describe --tags`
|
|
echo $version
|
|
|
|
here=$(dirname "$0")
|
|
cd $here/../dist
|
|
|
|
sftp -oBatchMode=no -b - thomasv@$host << !
|
|
cd electrum-downloads
|
|
mkdir $version
|
|
cd $version
|
|
mput *
|
|
bye
|
|
!
|