Skip to content

Commit

Permalink
upload setup.hint
Browse files Browse the repository at this point in the history
  • Loading branch information
mintty committed Apr 7, 2016
1 parent ae4bb80 commit bbcb525
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions cygwin/upload.sftp
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,24 @@ ID_RSA=${ID_RSA-$HOME/.ssh/id_rsa}
echo Uploading $pkg
echo Command: sftp -i $ID_RSA [email protected]

cp cygwin/setup.hint release/
cd release
touch '!ready'
sftp -b - -i $ID_RSA [email protected] <</EOSFTP
batch="-b -"
sftp $batch -i $ID_RSA [email protected] <</EOSFTP
#mkdir x86/release/mintty
put $pkg.i686/$pkg.tar.xz x86/release/mintty/
put $pkg-src.tar.xz x86/release/mintty/
put setup.hint x86/release/mintty/
#put /dev/null x86/release/!ready
put !ready x86/release/
#mkdir x86_64/release/mintty
put $pkg.x86_64/$pkg.tar.xz x86_64/release/mintty/
put $pkg-src.tar.xz x86_64/release/mintty/
#put /dev/null x86/release/!ready
put setup.hint x86_64/release/mintty/
#put /dev/null x86_64/release/!ready
put !ready x86_64/release/
/EOSFTP

0 comments on commit bbcb525

Please sign in to comment.