Fix path to install-mold script in linux script (#20286)

Patrick Decat created

Release Notes:

- N/A

Change summary

script/linux | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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"
 }