scripts: put quotes around file/directory names

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2023-08-27 09:25:50 +01:00
parent 1c8401be25
commit 5a47c01b11
11 changed files with 102 additions and 101 deletions
+2 -2
View File
@@ -40,7 +40,7 @@ main()
err "running lbmk as root as not permitted"
fi
rm -f ${cfgsdir}/*/seen || err_rm_seen "main 1"
rm -f "${cfgsdir}"/*/seen || err_rm_seen "main 1"
printf "Downloading %s and (if available) applying patches\n" \
${project}
@@ -68,7 +68,7 @@ main()
err "${project}/${target}: cannot download source tree"
done
rm -f ${cfgsdir}/*/seen || err_rm_seen "main 3"
rm -f "${cfgsdir}"/*/seen || err_rm_seen "main 3"
}
download_for_target()