diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-07-09 03:08:00 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-07-09 03:08:00 +0000 |
commit | 47d804c6ad1f7ffeba37183c1a8739b363cc25a2 (patch) | |
tree | a1f7f455c8819bb934aae1edb549ebc106a37350 | |
parent | cac50c0449a9bd7cb48fa438ed1fd75d4a113b72 (diff) |
first stab at automated .deb building
svn path=/trunk/; revision=7923
-rwxr-xr-x | scripts/auto-build/pd-extended-auto-builder.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/auto-build/pd-extended-auto-builder.sh b/scripts/auto-build/pd-extended-auto-builder.sh index 02f29da1..b427198b 100755 --- a/scripts/auto-build/pd-extended-auto-builder.sh +++ b/scripts/auto-build/pd-extended-auto-builder.sh @@ -77,7 +77,11 @@ upload_build () case $SYSTEM in linux) - upload_build linux_make build tar.bz2 + if [ -x /usr/bin/dpkg-deb ]; then + upload_build linux_make . deb + else + upload_build linux_make build tar.bz2 + fi ;; darwin) upload_build darwin_app . dmg |