There was an error while loading. Please reload this page.
1 parent f77c1e5 commit 8e3699dCopy full SHA for 8e3699d
1 file changed
autoconf/Dockerfile
@@ -49,11 +49,7 @@ RUN PATCH_VERBOSE=1 curl https://ftp.gnu.org/gnu/autoconf-archive/autoconf-archi
49
RUN tmp=$(mktemp -d) \
50
&& git -C "$tmp" init \
51
&& git -C "$tmp" remote add origin https://git.savannah.gnu.org/git/config.git \
52
- && for attempt in {1..5}; do \
53
- git -C "$tmp" fetch --depth=1 origin "$CONFIG_GIT_REV" && break; \
54
- if [[ "$attempt" == 5 ]]; then exit 1; fi; \
55
- sleep $((attempt * 5)); \
56
- done \
+ && git -C "$tmp" fetch --depth=1 origin "$CONFIG_GIT_REV" \
57
&& git -C "$tmp" checkout FETCH_HEAD -- config.guess config.sub \
58
&& install -m 755 "$tmp/config.guess" /usr/local/share/autoconf/build-aux/config.guess \
59
&& install -m 755 "$tmp/config.sub" /usr/local/share/autoconf/build-aux/config.sub \
0 commit comments