File tree Expand file tree Collapse file tree 1 file changed +19
-5
lines changed
Expand file tree Collapse file tree 1 file changed +19
-5
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ declare -rA GROUPED_DEPS=(
9595 [libasan6]=" libasan6"
9696
9797 [android]=" binutils build-essential cmake ccache curl unzip git pkg-config"
98-
98+
9999 [openmw-clang-format]="
100100 clang-format-14
101101 git-core
@@ -126,10 +126,24 @@ export APT_CACHE_DIR="${PWD}/apt-cache"
126126export DEBIAN_FRONTEND=noninteractive
127127set -x
128128mkdir -pv " $APT_CACHE_DIR "
129- apt-get update -yqq
129+
130+ while true ; do
131+ apt-get update -yqq && break
132+ done
133+
130134apt-get -qq -o dir::cache::archives=" $APT_CACHE_DIR " install -y --no-install-recommends software-properties-common gnupg > /dev/null
131- add-apt-repository -y ppa:openmw/openmw
132- add-apt-repository -y ppa:openmw/openmw-daily
133- add-apt-repository -y ppa:openmw/staging
135+
136+ while true ; do
137+ add-apt-repository -y ppa:openmw/openmw && break
138+ done
139+
140+ while true ; do
141+ add-apt-repository -y ppa:openmw/openmw-daily && break
142+ done
143+
144+ while true ; do
145+ add-apt-repository -y ppa:openmw/staging && break
146+ done
147+
134148apt-get -qq -o dir::cache::archives=" $APT_CACHE_DIR " install -y --no-install-recommends " ${deps[@]} " > /dev/null
135149apt list --installed
You can’t perform that action at this time.
0 commit comments