Skip to content

Commit 42b89c1

Browse files
committed
build: fix download skipping, and wget2 compat
1 parent 6cc1281 commit 42b89c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ unbuf="stdbuf --output=0 --error=0"
8686

8787
# download and extract sdk tarball
8888
mkdir -p "./tmp/dl/$branch"
89-
wget --progress=dot:giga -O "./tmp/dl/$branch/$sdkfile" "$dlurl/$target/$sdkfile"
89+
wget -nv -N -P "./tmp/dl/$branch" "$dlurl/$target/$sdkfile"
9090
rm -rf "$sdkdir"
9191
mkdir -p "$sdkdir"
9292
tar -x -C "$sdkdir" --strip-components=1 -f "./tmp/dl/$branch/$sdkfile"

0 commit comments

Comments
 (0)