@aptos-labs/aptos-cli 0.1.7 → 0.1.8
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/aptos +1 -1
- package/package.json +1 -1
package/bin/aptos
CHANGED
|
@@ -118,7 +118,7 @@ const main = async () => {
|
|
|
118
118
|
if (os === "Windows") {
|
|
119
119
|
// Download the zip file, extract it, and move the binary to the correct location.
|
|
120
120
|
execSync(
|
|
121
|
-
`curl -L -o C:/tmp/aptos.zip ${url} & powershell Expand-Archive -Path C:/tmp/aptos.zip -DestinationPath C:/tmp -Force & move C:\\tmp\\aptos.exe ${path}
|
|
121
|
+
`curl -L -o C:/tmp/aptos.zip ${url} & powershell Expand-Archive -Path C:/tmp/aptos.zip -DestinationPath C:/tmp -Force & move C:\\tmp\\aptos.exe ${path}`
|
|
122
122
|
);
|
|
123
123
|
} else if (os === "MacOS") {
|
|
124
124
|
// Install the CLI with brew.
|