Skip to content

Commit 9eddff4

Browse files
author
Yuriy Krutko
committed
compute install script fix
1 parent 9f182eb commit 9eddff4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

yandex/compute/install.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ BASE_VAULT_VERSION=1.11.5
55

66
# Install Go
77
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
8+
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.20.3.linux-amd64.tar.gz # https://go.dev/doc/install
99
export GOPATH=~/go
1010
export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
1111

@@ -16,6 +16,8 @@ export PATH=$PATH:~/node-v16.18.1-linux-x64/bin
1616

1717
# Install the required packages
1818
apt update -y
19+
# Avoiding 'E: Could not get lock /var/lib/dpkg/lock-frontend' error
20+
sleep 5
1921
apt install -y git build-essential
2022
npm install -g yarn
2123

0 commit comments

Comments
 (0)