diff options
-rwxr-xr-x | Scripts/build-version.pl | 2 | ||||
-rwxr-xr-x | Scripts/package-application.sh | 6 | ||||
-rwxr-xr-x | Scripts/trim-application.sh | 4 |
3 files changed, 10 insertions, 2 deletions
diff --git a/Scripts/build-version.pl b/Scripts/build-version.pl index a118e281..cd56310d 100755 --- a/Scripts/build-version.pl +++ b/Scripts/build-version.pl @@ -1,5 +1,7 @@ #! /usr/bin/perl -w +## $Id$ +## ## Author: Stuart Connolly (stuconnolly.com) ## Copyright (c) 2009 Stuart Connolly. All rights reserved. ## diff --git a/Scripts/package-application.sh b/Scripts/package-application.sh index 680cfb23..e00c91a5 100755 --- a/Scripts/package-application.sh +++ b/Scripts/package-application.sh @@ -1,5 +1,7 @@ #!/bin/sh +# $Id$ +# # package-application.sh # sequel-pro # @@ -62,4 +64,6 @@ if [ -e "$PRIVATE_KEY_LOCATION" ] then SIGNATURE=`openssl dgst -sha1 -binary < "${DMG_BUILD_PATH}/${DMG_NAME}.dmg" | openssl dgst -dss1 -sign "$PRIVATE_KEY_LOCATION" | openssl enc -base64` echo "$SIGNATURE" > "${DMG_BUILD_PATH}/${DMG_NAME}.dmg.signature" -fi
\ No newline at end of file +fi + +exit 0 diff --git a/Scripts/trim-application.sh b/Scripts/trim-application.sh index 90540e40..a8194060 100755 --- a/Scripts/trim-application.sh +++ b/Scripts/trim-application.sh @@ -1,5 +1,7 @@ #! /bin/ksh +## $Id$ +## ## Author: Stuart Connolly (stuconnolly.com) ## Copyright (c) 2009 Stuart Connolly. All rights reserved. ## @@ -124,4 +126,4 @@ fi printf "\nTrimming application bundle '`basename $APP_PATH`' complete\n" -exit 0
\ No newline at end of file +exit 0 |