mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
We don't need to escape cordova plugin --variable args
Cordova doesn't remove the quotes, and it doesn't expect them. This works for both the issues that were raised.
This commit is contained in:
@@ -466,7 +466,7 @@ var installPlugin = function (cordovaPath, name, version, conf) {
|
||||
|
||||
_.each(conf || {}, function (value, variable) {
|
||||
additionalArgs.push('--variable');
|
||||
additionalArgs.push(variable + '=\'' + value + '\'');
|
||||
additionalArgs.push(variable + '=' + value);
|
||||
});
|
||||
|
||||
var execRes = execFileSyncOrThrow(localCordova,
|
||||
|
||||
Reference in New Issue
Block a user