Skip to content

Commit

Permalink
make-release: take .app path as argument
Browse files Browse the repository at this point in the history
  • Loading branch information
davidswelt committed Jun 13, 2013
1 parent e1fcf3e commit 4a10101
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aquamacs/build/make-release.perl
Expand Up @@ -10,7 +10,7 @@
$REPO_DIR = '/Users/dr/ae.git';

$BINARY = '/Applications/Aquamacs.app';

$BINARY = $ARGV[0] if ($ARGV[0]);

$DMG = "$PROJECT_DIR/AquamacsInstall.dmg";
$RELEASE_NOTES = "$REPO_DIR/aquamacs/doc/latex/changes.pdf";
Expand Down Expand Up @@ -43,7 +43,7 @@

&sys("rm -rf \"$VOL/Aquamacs.app\"");

&sys("cd \"$BINARY\"; $REPO_DIR . "/aquamacs/build/sign");
&sys("cd \"$BINARY\"; ${REPO_DIR}/aquamacs/build/sign");

&sys("cp -pR \"$BINARY\" \"$VOL/\"");
} else
Expand Down

0 comments on commit 4a10101

Please sign in to comment.