@aptos-labs/aptos-cli 0.1.4 → 0.1.5

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.
Files changed (2) hide show
  1. package/bin/aptos +2 -2
  2. package/package.json +1 -1
package/bin/aptos CHANGED
@@ -132,14 +132,14 @@ const main = async () => {
132
132
  }
133
133
 
134
134
  // Spawn a child process to execute the binary with the provided arguments.
135
- if (os === "MacOS") {
135
+ if (os === "Windows") {
136
136
  spawn(path, process.argv.slice(2), {
137
137
  stdio: "inherit",
138
+ shell: true,
138
139
  });
139
140
  } else {
140
141
  spawn(path, process.argv.slice(2), {
141
142
  stdio: "inherit",
142
- shell: true,
143
143
  });
144
144
  }
145
145
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptos-labs/aptos-cli",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Aptos CLI available from npmjs",
5
5
  "bin": {
6
6
  "aptos": "bin/aptos"