From c2cf4c45c0ecb9fd8426ddb7c4bd175c254e0add Mon Sep 17 00:00:00 2001 From: Patrick Decat Date: Wed, 6 Nov 2024 11:18:31 +0100 Subject: [PATCH] Fix path to install-mold script in linux script (#20286) Release Notes: - N/A --- script/linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/linux b/script/linux index ba7850a80d..029bd71ccc 100755 --- a/script/linux +++ b/script/linux @@ -14,7 +14,7 @@ function finalize { # verify the mold situation if ! command -v mold >/dev/null 2>&1; then echo "Warning: Mold binaries are unavailable on your system." >&2 - echo " Builds will be slower without mold. Try: scripts/install-mold" >&2 + echo " Builds will be slower without mold. Try: script/install-mold" >&2 fi echo "Finished installing Linux dependencies with script/linux" }