Skip to content

Commit 79fe634

Browse files
committed
fix: small fixes for ci
1 parent f2e7412 commit 79fe634

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
"@types/node": "^20.5.7",
6060
"@typescript-eslint/eslint-plugin": "^5.61.0",
6161
"@typescript-eslint/parser": "^5.61.0",
62-
"common-tags": "^1.8.2",
6362
"eslint": "^8.44.0",
6463
"eslint-config-prettier": "^8.8.0",
6564
"eslint-plugin-import": "^2.27.5",

scripts/brew-install.sh

+7-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ brew link --overwrite rustup-init
2020
# Brew does not provide specific versions of rust
2121
# However rustup provides specific versions
2222
# Here we provide both toolchains
23-
rustup-init \
24-
--default-toolchain 1.83.0 \
25-
--target x86_64-apple-darwin aarch64-apple-darwin \
26-
-y
23+
echo "Running rustup-init"
24+
rustup-init --default-toolchain 1.68.2 -y
25+
echo "Adding x86_64-apple-darwin as target"
26+
rustup target add x86_64-apple-darwin
27+
echo "Adding aarch64-apple-darwin as target"
28+
rustup target add aarch64-apple-darwin
29+
echo "Completed brew setup"

0 commit comments

Comments
 (0)