-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Trevor Johnston
committed
Nov 18, 2016
1 parent
c1a1c73
commit d3e0b58
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -225,12 +225,13 @@ module.exports = function(grunt) { | |
makeChromeWebStoreZips: { | ||
command: 'tools/makechromezips.sh' | ||
}, | ||
// Pipe 'no' into any CCA command which asks on first run whether to send usage stats. | ||
// It's slightly annoying on your workstation, potentially fatal on Docker and Travis. | ||
ccaCreateDev: { | ||
// Pipe 'no' for the first time cca.js asks whether to send usage stats. | ||
command: 'echo no | <%= ccaJsPath %> create <%= androidDevPath %> org.uproxy.uProxy "uProxy" --link-to=<%= ccaDevPath %>' | ||
}, | ||
ccaCreateDist: { | ||
command: '<%= ccaJsPath %> create <%= androidDistPath %> org.uproxy.uProxy "uProxy" --link-to=<%= ccaDistPath %>' | ||
command: 'echo no | <%= ccaJsPath %> create <%= androidDistPath %> org.uproxy.uProxy "uProxy" --link-to=<%= ccaDistPath %>' | ||
}, | ||
ccaPlatformAndroidDev: { | ||
cwd: '<%= androidDevPath %>', | ||
|
@@ -252,7 +253,6 @@ module.exports = function(grunt) { | |
// compatibility with the modified libxwalkcore.so that provides obfuscated WebRTC. | ||
ccaBuildAndroid: { | ||
cwd: '<%= androidDevPath %>', | ||
// Pipe 'no' for the first time cca.js asks whether to send usage stats (grunt build_android_lite). | ||
command: 'echo no | <%= ccaJsPath %> build android --debug [email protected]:xwalk_core_library_beta:22.52.561.2' | ||
}, | ||
ccaReleaseAndroid: { | ||
|