mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-01 02:12:58 +08:00
Fix update script to clobber cordova.js file (missing -f)
This commit is contained in:
parent
734d4d3147
commit
4441215e4c
@ -65,14 +65,14 @@ function ensureJarIsBuilt(version, target_api) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function copyJsAndJar(projectPath, version) {
|
function copyJsAndJar(projectPath, version) {
|
||||||
shell.cp(path.join(ROOT, 'framework', 'assets', 'www', 'cordova.js'), path.join(projectPath, 'assets', 'www', 'cordova.js'));
|
shell.cp('-f', path.join(ROOT, 'framework', 'assets', 'www', 'cordova.js'), path.join(projectPath, 'assets', 'www', 'cordova.js'));
|
||||||
// Don't fail if there are no old jars.
|
// Don't fail if there are no old jars.
|
||||||
setShellFatal(false, function() {
|
setShellFatal(false, function() {
|
||||||
shell.ls(path.join(projectPath, 'libs', 'cordova-*.jar')).forEach(function(oldJar) {
|
shell.ls(path.join(projectPath, 'libs', 'cordova-*.jar')).forEach(function(oldJar) {
|
||||||
shell.rm('-f', path.join(projectPath, 'libs', oldJar));
|
shell.rm('-f', path.join(projectPath, 'libs', oldJar));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
shell.cp(path.join(ROOT, 'framework', 'cordova-' + version + '.jar'), path.join(projectPath, 'libs', 'cordova-' + version + '.jar'));
|
shell.cp('-f', path.join(ROOT, 'framework', 'cordova-' + version + '.jar'), path.join(projectPath, 'libs', 'cordova-' + version + '.jar'));
|
||||||
}
|
}
|
||||||
|
|
||||||
function copyScripts(projectPath) {
|
function copyScripts(projectPath) {
|
||||||
|
Loading…
Reference in New Issue
Block a user