@aptos-labs/aptos-cli 0.1.6 → 0.1.7

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 +1 -1
  2. package/package.json +1 -1
package/bin/aptos CHANGED
@@ -99,7 +99,7 @@ const main = async () => {
99
99
  } else if (os === "Windows") {
100
100
  path = `${__dirname}\\${PNAME}.exe`;
101
101
  } else {
102
- path = `${__dirname}\\${PNAME}`;
102
+ path = `${__dirname}/${PNAME}`;
103
103
  }
104
104
 
105
105
  // If binary does not exist, download it.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptos-labs/aptos-cli",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Aptos CLI available from npmjs",
5
5
  "bin": {
6
6
  "aptos": "bin/aptos"