diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-11-09 19:20:29 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-11-09 19:20:29 +0000 |
commit | 07cadf663de8d61bc28cc35c7cbec39c8ad8fbe9 (patch) | |
tree | 7d567e3841f397f35a9ccb8fda616faa439b57cb /scripts | |
parent | 12c194df3092620d37171a75030d00fdc6321ff5 (diff) |
don't make a package if the build exited with an error
svn path=/trunk/; revision=6244
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/auto-build/pd-main-auto-builder.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/auto-build/pd-main-auto-builder.sh b/scripts/auto-build/pd-main-auto-builder.sh index 021ae067..9d0f5a80 100755 --- a/scripts/auto-build/pd-main-auto-builder.sh +++ b/scripts/auto-build/pd-main-auto-builder.sh @@ -47,9 +47,9 @@ case $SYSTEM in upload_filename=`ls -1 ${archive} | sed "s|.*/\(.*\)\.${archive_format}|\1-${HOSTNAME}.${archive_format}|"` cd ${auto_build_root_dir}/packages/darwin_app/ make package_clean - make darwin_app_core - make readme_install - make package + make darwin_app_core && \ + make readme_install && \ + make package make test_locations rsync -a ${archive} \ rsync://128.238.56.50/upload/${DATE}/${upload_filename} && \ |