diff options
author | Jan Holesovsky <kendy@suse.cz> | 2010-11-29 11:05:10 +0100 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-11-30 20:25:22 -0600 |
commit | be729b00869a12bca0b7b114dcecbad3f3585e6c (patch) | |
tree | 2b565808df26f2a3ace76001bfbadd5d4b634259 /download | |
parent | 4a8e692f6bab49de18d37f9fdf7ba998396523a5 (diff) |
download: Fix minor typos to make it work on Windows.
Diffstat (limited to 'download')
-rwxr-xr-x | download | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -159,10 +159,6 @@ done rm $TARFILE_LOCATION/tmp/*-* cd $start_dir -if [ -e post_download ] ; then - ./post_download -fi - if [ ! -z "$failed" ]; then echo echo ERROR: failed on: @@ -172,3 +168,6 @@ if [ ! -z "$failed" ]; then exit 1 fi +[ -x "post_download" ] || { echo "'post_download' script not found, run ./autogen.sh." ; exit 1 ; } + +./post_download || exit 1 |