mythix-cli 1.3.1 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/mythix-cli.js CHANGED
@@ -32,6 +32,10 @@ function spawnCommand(command, args, options) {
32
32
  (async function () {
33
33
  let config;
34
34
 
35
+ // Windows hack
36
+ if(!process.env.PWD)
37
+ process.env.PWD = process.cwd();
38
+
35
39
  let argOptions = CMDed(({ $, store }) => {
36
40
  $('--config', Types.STRING({
37
41
  format: Path.resolve,
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "mythix-cli": "./bin/mythix-cli.js"
4
4
  },
5
5
  "name": "mythix-cli",
6
- "version": "1.3.1",
6
+ "version": "1.3.2",
7
7
  "description": "Mythix CLI utility",
8
8
  "main": "src/index.js",
9
9
  "scripts": {