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
2 changed files
with
10 additions
and
0 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
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ version=`echo VERSION | cpp -P --include src/appinfo.h` | |
version=`eval echo $version` | ||
rel=${REL-0} | ||
pkg=mintty-$version-$rel | ||
dbg=mintty-debuginfo-$version-$rel | ||
|
||
ID_RSA=${ID_RSA-$HOME/.ssh/id_rsa} | ||
|
||
|
@@ -13,6 +14,9 @@ echo Command: sftp -i $ID_RSA [email protected] | |
if [ ! -f release/$pkg.hint ] | ||
then cp cygwin/setup.hint release/$pkg.hint | ||
fi | ||
if [ ! -f release/$dbg.hint ] | ||
then cp cygwin/mintty-debuginfo.hint release/$dbg.hint | ||
fi | ||
cd release | ||
touch '!ready' | ||
batch="-b -" | ||
|
@@ -23,6 +27,8 @@ put $pkg.i686/$pkg.tar.xz x86/release/mintty/ | |
put $pkg-src.tar.xz x86/release/mintty/ | ||
#put setup.hint x86/release/mintty/ | ||
put $pkg.hint x86/release/mintty/ | ||
put $pkg.i686/$dbg.tar.xz x86/release/mintty/ | ||
put $dbg.hint x86/release/mintty/ | ||
#put /dev/null x86/release/!ready | ||
put !ready x86/release/ | ||
|
@@ -31,6 +37,8 @@ put $pkg.x86_64/$pkg.tar.xz x86_64/release/mintty/ | |
put $pkg-src.tar.xz x86_64/release/mintty/ | ||
#put setup.hint x86_64/release/mintty/ | ||
put $pkg.hint x86_64/release/mintty/ | ||
put $pkg.x86_64/$dbg.tar.xz x86_64/release/mintty/ | ||
put $dbg.hint x86_64/release/mintty/ | ||
#put /dev/null x86_64/release/!ready | ||
put !ready x86_64/release/ | ||
|