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 6b19388 commit 2efb7e7Copy full SHA for 2efb7e7
setup/ci_bootstrap.sh
@@ -72,8 +72,9 @@ elif [ "$(uname -s)" = Linux ]; then
72
retry $sudo apk update
73
retry $sudo apk add --no-progress bash git make
74
elif type apt-get >/dev/null 2>&1; then
75
- retry $sudo apt-get update -q
76
- retry $sudo apt-get install -qy git make
+ opts="-q -o DPkg::Lock::Timeout=1200"
+ retry $sudo apt-get update $opts
77
+ retry $sudo apt-get install $opts -y git make
78
elif type yum >/dev/null 2>&1; then
79
#retry $sudo yum makecache
80
retry $sudo yum install -qy git make
0 commit comments