Skip to content

Commit

Permalink
Cleaner log output for Android.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nat Weiss committed Jan 27, 2016
1 parent 4b3cd39 commit 35c5fe1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rapidgame.js
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ var prebuildAndroid = function(platform, config, arch, callback) {
dest = path.join(cmd.src, "build", configs[i] + "-Android");

// Always copy latest Android build files.
logBuild("Copying " + src + " to " + dest, true);
logBuild("Copying " + src + " to " + dest, false);
wrench.mkdirSyncRecursive(dest);
//copyGlobbed(src, dest, "build.sh");
//copyGlobbed(src, dest, "makefile");
Expand Down Expand Up @@ -1168,7 +1168,7 @@ var linkAndroid = function(configArch, callback) {
src = path.join(cmd.src, "build", config + "-Android", "obj", "local", arch);
dest = path.join(cmd.dest, "cocos2d", "x", "lib", config + "-Android", arch);

logBuild("Copying Android libraries from " + src + " to " + dest, true);
logBuild("Copying Android libraries from " + src + " to " + dest, false);
copyGlobbed(src, dest, "*.a");
} else {
logBuild("Failed to link Android because couldn't get config and arch from: " + configArch, true);
Expand Down

0 comments on commit 35c5fe1

Please sign in to comment.