remove chdir override and set PWD from the get go
This commit is contained in:
parent
3c08b575df
commit
70d71b190c
|
@ -5,6 +5,11 @@ require('colors');
|
|||
|
||||
let version = require('../package.json').version;
|
||||
|
||||
// Set PWD to CWD since Windows doesn't have a value for PWD
|
||||
if (!process.env.PWD) {
|
||||
process.env.PWD = process.cwd();
|
||||
}
|
||||
|
||||
class EmbarkController {
|
||||
|
||||
constructor(options) {
|
||||
|
|
Loading…
Reference in New Issue