Skip to content

Commit a8b43e1

Browse files
authored
Merge pull request #2297 from mikeller/fix_macos_big_sur_issues
Cosmetic fix in gulpfile.
2 parents fd51bd9 + e2f3361 commit a8b43e1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

gulpfile.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -566,14 +566,13 @@ function start_debug(done) {
566566

567567
const platforms = getPlatforms();
568568

569-
const exec = require('child_process').exec;
570569
if (platforms.length === 1) {
571570
if (platforms[0] === 'android') {
572571
cordova_debug();
573572
} else {
574573
const run = getRunDebugAppCommand(platforms[0]);
575574
console.log(`Starting debug app (${run})...`);
576-
exec(run);
575+
child_process.exec(run);
577576
}
578577
} else {
579578
console.log('More than one platform specified, not starting debug app');

0 commit comments

Comments
 (0)