Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
adamduren committed Apr 2, 2019
1 parent bee92b2 commit df443c0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/ios/check_sdk_version.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ module.exports = function (ctx) {

var PluginInfoProvider = ctx.requireCordovaModule('cordova-common').PluginInfoProvider;

var Q = require('q'),
path = require('path');
var path = require('path');

var projectRoot = ctx.opts.projectRoot;
return Q.Promise(function (resolve, reject) {
return new Promise(function (resolve, reject) {

var pluginsDir = path.join(projectRoot, 'plugins');
var pluginInfoProvider = new PluginInfoProvider();
Expand Down

0 comments on commit df443c0

Please sign in to comment.