diff options
author | kleines Filmröllchen <filmroellchen@serenityos.org> | 2022-06-19 16:31:29 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-19 15:45:14 +0100 |
commit | 026cea990aa82af8cc9f07bc60a3649cc60bd729 (patch) | |
tree | 29c1d04a61dbff2e08a57b0d78dab34d6298c0bb /Toolchain | |
parent | 1f886f94bdc908cf32bcf86fc69615c851db3c53 (diff) | |
download | serenity-026cea990aa82af8cc9f07bc60a3649cc60bd729.zip |
Toolchain: Update mold to 1.0.3
Diffstat (limited to 'Toolchain')
-rwxr-xr-x | Toolchain/BuildMold.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Toolchain/BuildMold.sh b/Toolchain/BuildMold.sh index 75f427b3e5..be01aa775a 100755 --- a/Toolchain/BuildMold.sh +++ b/Toolchain/BuildMold.sh @@ -29,7 +29,7 @@ if [ "$1" = "--git" ]; then git pull else - VERSION=1.0.2 + VERSION=1.0.3 [ ! -e mold-$VERSION.tar.gz ] && curl -L "https://github.com/rui314/mold/archive/refs/tags/v$VERSION.tar.gz" -o mold-$VERSION.tar.gz [ ! -e mold-$VERSION ] && tar -xzf mold-$VERSION.tar.gz cd mold-$VERSION |