Skip to content

Commit 6ece30e

Browse files
committed
feat: Force arch to be arm64. Added linux to uplaod script.
1 parent 749265c commit 6ece30e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
"start:vm": "npm run build && npm run pack:macos && npm run start:vm",
144144
"deploy": "npm run pkg && npm run notarize && npm run upload"
145145
},
146-
"version": "1.0.0-beta1",
146+
"version": "1.0.0-beta2",
147147
"bugs": "https://github.com/codifycli/codify/issues",
148148
"keywords": [
149149
"oclif",

scripts/install-beta.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
if [ "\$ARCH" == "x86_64" ]; then
3131
ARCH=x64
3232
elif [[ "\$ARCH" == aarch* ]]; then
33-
ARCH=arm
33+
ARCH=arm64
3434
elif [[ "\$ARCH" == "arm64" ]]; then
3535
ARCH=arm64
3636
else

scripts/upload.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ export $(cat .env | xargs)
33
cd .build || exit 1
44

55
oclif upload macos
6-
oclif upload tarballs -t darwin-arm64,darwin-x64
6+
oclif upload tarballs -t darwin-arm64,darwin-x64,linux-x64,linux-arm64

0 commit comments

Comments
 (0)