Skip to content

Commit

Permalink
build: fix download skipping, and wget2 compat
Browse files Browse the repository at this point in the history
(cherry picked from commit fcb9e32)
(cherry picked from commit 9738c49)
  • Loading branch information
pktpls committed Dec 7, 2024
1 parent d9b7fbc commit 8abdfd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ unbuf="stdbuf --output=0 --error=0"

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

0 comments on commit 8abdfd0

Please sign in to comment.