Skip to content

Commit

Permalink
Fix the path to the zip file.
Browse files Browse the repository at this point in the history
  • Loading branch information
eventualbuddha committed Jan 12, 2011
1 parent 5983dc0 commit 18fdc54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jakefile
Expand Up @@ -46,7 +46,7 @@ JAKE.task("zip", function() {
BUILD_PATH.join(zipName).remove();

OS.system("cd Client && jake desktop");
OS.system("cd Client/Build/Desktop/Issues && zip -r ../../../../Build/"+zipName+" Issues.app");
OS.system("cd Client/Build/Desktop/Issues && zip -r ../../../Build/"+zipName+" Issues.app");
});

function getGitSHA(directory) {
Expand All @@ -62,4 +62,4 @@ function buildCommandString(commands) {
return commands.map(function(command) {
return command.map(OS.enquote).join(" ");
}).join(" && ");
}
}

0 comments on commit 18fdc54

Please sign in to comment.