Repository: cordova-lib Updated Branches: refs/heads/master 78affa2de -> 8cd2c9a60
CB-10553 Fix framework tag handler for Android Project: http://git-wip-us.apache.org/repos/asf/cordova-lib/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-lib/commit/8cd2c9a6 Tree: http://git-wip-us.apache.org/repos/asf/cordova-lib/tree/8cd2c9a6 Diff: http://git-wip-us.apache.org/repos/asf/cordova-lib/diff/8cd2c9a6 Branch: refs/heads/master Commit: 8cd2c9a60397393a3d49e93995fe68c3c9d58704 Parents: 78affa2 Author: Karen Tran <[email protected]> Authored: Sat Feb 6 22:01:58 2016 -0500 Committer: Karen Tran <[email protected]> Committed: Sat Feb 6 22:01:58 2016 -0500 ---------------------------------------------------------------------- cordova-lib/src/plugman/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/8cd2c9a6/cordova-lib/src/plugman/install.js ---------------------------------------------------------------------- diff --git a/cordova-lib/src/plugman/install.js b/cordova-lib/src/plugman/install.js index 6d35348..6653e07 100644 --- a/cordova-lib/src/plugman/install.js +++ b/cordova-lib/src/plugman/install.js @@ -608,7 +608,7 @@ function handleInstall(actions, pluginInfo, platform, project_dir, plugins_dir, .save(); if (platform == 'android' && semver.gte(options.platformVersion, '4.0.0-dev') && - pluginInfo.getFrameworks('platform').length > 0) { + pluginInfo.getFrameworks(platform).length > 0) { events.emit('verbose', 'Updating build files since android plugin contained <framework>'); var buildModule; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
