mirror of
https://github.com/apache/cordova-android.git
synced 2026-05-11 00:00:05 +08:00
CB-5793 Forgot to update ant path for clean.
This commit is contained in:
Vendored
+2
-1
@@ -28,7 +28,8 @@ var spawn = require('./spawn'),
|
||||
* Returns a promise.
|
||||
*/
|
||||
module.exports.run = function() {
|
||||
return spawn('ant', ['clean', '-f', path.join(ROOT, 'build.xml')]);
|
||||
var args = ['clean', '-f', path.join(ROOT, 'build.xml'), '-Dout.dir=ant-build', '-Dgen.dir=ant-build/gen'];
|
||||
return spawn('ant', args);
|
||||
}
|
||||
|
||||
module.exports.help = function() {
|
||||
|
||||
Reference in New Issue
Block a user