We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89b4f33 commit 651781aCopy full SHA for 651781a
scripts/common.sh
@@ -3,6 +3,7 @@
3
export PATH=$PATH:$HOME/.cargo/bin
4
5
6
+# rustup
7
if hash rustup 2>/dev/null; then
8
echo "Have rustup, skipping installation..."
9
else
@@ -11,6 +12,7 @@ else
11
12
fi
13
14
15
+# wasm-pack
16
if hash wasm-pack 2>/dev/null; then
17
echo "Have wasm-pack, skipping installation..."
18
@@ -19,6 +21,19 @@ else
19
21
20
22
23
24
+# aws cli
25
+if hash aws 2>/dev/null; then
26
+ echo "Have aws cli, skipping installation..."
27
+else
28
+ echo "Installing aws cli..."
29
+ curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
30
+ unzip awscliv2.zip
31
+ sudo ./aws/install
32
+ echo "Installed aws into:"
33
+ which aws
34
+fi
35
+
36
37
rustup update
38
rustup default nightly
39
0 commit comments