mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Toolchain/BuildIt.sh: Use curl instead of wget
We already use curl for ports, so let's be consistent.
This commit is contained in:
parent
13c6400018
commit
f28fa616eb
Notes:
sideshowbarker
2024-07-19 11:59:14 +09:00
Author: https://github.com/larb0b Commit: https://github.com/SerenityOS/serenity/commit/f28fa616ebb Pull-request: https://github.com/SerenityOS/serenity/pull/600
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ pushd "$DIR/Tarballs"
|
|||
echo "bu md5='$md5'"
|
||||
if [ ! -e "binutils-2.32.tar.gz" ] || [ "$md5" != "d1119c93fc0ed3007be4a84dd186af55" ] ; then
|
||||
rm -f binutils-2.32.tar.gz
|
||||
wget "http://ftp.gnu.org/gnu/binutils/binutils-2.32.tar.gz"
|
||||
curl -O "http://ftp.gnu.org/gnu/binutils/binutils-2.32.tar.gz"
|
||||
else
|
||||
echo "Skipped downloading binutils"
|
||||
fi
|
||||
|
@ -30,7 +30,7 @@ pushd "$DIR/Tarballs"
|
|||
echo "gc md5='$md5'"
|
||||
if [ ! -e "gcc-8.3.0.tar.gz" ] || [ "$md5" != "9972f8c24c02ebcb5a342c1b30de69ff" ] ; then
|
||||
rm -f gcc-8.3.0.tar.gz
|
||||
wget "http://ftp.gnu.org/gnu/gcc/gcc-8.3.0/gcc-8.3.0.tar.gz"
|
||||
curl -O "http://ftp.gnu.org/gnu/gcc/gcc-8.3.0/gcc-8.3.0.tar.gz"
|
||||
else
|
||||
echo "Skipped downloading gcc"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue