File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 59
59
"@types/node" : " ^20.5.7" ,
60
60
"@typescript-eslint/eslint-plugin" : " ^5.61.0" ,
61
61
"@typescript-eslint/parser" : " ^5.61.0" ,
62
- "common-tags" : " ^1.8.2" ,
63
62
"eslint" : " ^8.44.0" ,
64
63
"eslint-config-prettier" : " ^8.8.0" ,
65
64
"eslint-plugin-import" : " ^2.27.5" ,
Original file line number Diff line number Diff line change @@ -20,7 +20,10 @@ brew link --overwrite rustup-init
20
20
# Brew does not provide specific versions of rust
21
21
# However rustup provides specific versions
22
22
# 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"
You can’t perform that action at this time.
0 commit comments