diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-04-18 17:06:25 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-04-18 17:06:25 +0000 |
commit | ad7d4dbd25b3292830f2baadb73511abab20d555 (patch) | |
tree | 8c6f21e188d2743b82122aef57e4a161b951f435 /scripts | |
parent | 67d5dcbc7f20eae4abb171bb7f89e1de94359906 (diff) |
made archive filename generation more robust, fixing md5 problem on MinGW
svn path=/trunk/; revision=9716
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/auto-build/pd-extended-auto-builder.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/auto-build/pd-extended-auto-builder.sh b/scripts/auto-build/pd-extended-auto-builder.sh index b874c38b..796ccd63 100755 --- a/scripts/auto-build/pd-extended-auto-builder.sh +++ b/scripts/auto-build/pd-extended-auto-builder.sh @@ -64,7 +64,7 @@ upload_build () build_folder=$2 archive_format=$3 - archive="${auto_build_root_dir}/packages/${platform_folder}/${build_folder}/Pd*.${archive_format}" + archive=`ls -1 ${auto_build_root_dir}/packages/${platform_folder}/${build_folder}/Pd*.${archive_format} | tail -1` echo "upload specs $1 $2 $3" echo "Uploading $archive" |