We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f182eb commit 9eddff4Copy full SHA for 9eddff4
yandex/compute/install.sh
@@ -5,7 +5,7 @@ BASE_VAULT_VERSION=1.11.5
5
6
# Install Go
7
wget https://golang.org/dl/go1.20.3.linux-amd64.tar.gz # https://go.dev/doc/install
8
-rm -rf /usr/local/go && tar -C /usr/local -xzf go1.19.3.linux-amd64.tar.gz # https://go.dev/doc/install
+rm -rf /usr/local/go && tar -C /usr/local -xzf go1.20.3.linux-amd64.tar.gz # https://go.dev/doc/install
9
export GOPATH=~/go
10
export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
11
@@ -16,6 +16,8 @@ export PATH=$PATH:~/node-v16.18.1-linux-x64/bin
16
17
# Install the required packages
18
apt update -y
19
+# Avoiding 'E: Could not get lock /var/lib/dpkg/lock-frontend' error
20
+sleep 5
21
apt install -y git build-essential
22
npm install -g yarn
23
0 commit comments