forked from mintty/mintty
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |