fix: printf invalid option in download-zig (#7351)

This commit is contained in:
Adrien Brault
2023-11-28 22:27:19 +01:00
committed by GitHub
parent eb98b61201
commit 0b99b01b0e

View File

@@ -73,7 +73,7 @@ if [ -e "${extract_at}/.version" ]; then
fi
if ! [ -e "${dest}" ]; then
printf "-- Downloading Zig v%s\n" "${zig_version}"
printf -- "-- Downloading Zig v%s\n" "${zig_version}"
curl -o "$dest" -L "$url"
fi