mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-01-11 22:44:45 +00:00
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;
|
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 {
|
class EmbarkController {
|
||||||
|
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user