Skip to content

Commit 2efb7e7

Browse files
committed
updated ci_bootstrap.sh
1 parent 6b19388 commit 2efb7e7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup/ci_bootstrap.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,9 @@ elif [ "$(uname -s)" = Linux ]; then
7272
retry $sudo apk update
7373
retry $sudo apk add --no-progress bash git make
7474
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
75+
opts="-q -o DPkg::Lock::Timeout=1200"
76+
retry $sudo apt-get update $opts
77+
retry $sudo apt-get install $opts -y git make
7778
elif type yum >/dev/null 2>&1; then
7879
#retry $sudo yum makecache
7980
retry $sudo yum install -qy git make

0 commit comments

Comments
 (0)