Skip to content

Commit

Permalink
Debug fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
dpogue committed Jul 30, 2023
1 parent cf751bb commit 09cdd34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/seymour.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ function run(args, env) {
return Promise.resolve();
}

var projectRoot = cordova.findProjectRoot();
var projectRoot = cordova.findProjectRoot(process.cwd());
if (!projectRoot) {
return Promise.reject(new CordovaError(`Current working directory is not a Cordova-based project: ${process.cwd()}`));
return Promise.reject(new CordovaError('Current working directory is not a Cordova-based project: ' + process.cwd()));
}

var logger = CordovaLogger.get();
Expand Down

0 comments on commit 09cdd34

Please sign in to comment.