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 f1fdab4 commit 4c69caeCopy full SHA for 4c69cae
scripts/fetch.sh
@@ -28,6 +28,7 @@ if [ ! -d "$JDKDIR" ]; then
28
# download bz2
29
echo "[FETCH] Downloading Java tarball from Mercurial"
30
31
+ set +e
32
wget -nv -N "$JAVA_REPO"
33
status=$?
34
tries=1
@@ -42,7 +43,7 @@ if [ ! -d "$JDKDIR" ]; then
42
43
44
tries=$(($tries+1))
45
done
-
46
+ set -e
47
48
# extract
49
echo "[FETCH] Extracting tarball"
0 commit comments