init.sh: single-quote xbmklock in xbmk_lock()

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2025-05-04 16:14:50 +01:00
parent 4618452c19
commit d4776f065c
+1 -1
View File
@@ -186,7 +186,7 @@ xbmk_create_tmpdir()
xbmk_lock()
{
[ -f "$xbmklock" ] && err "$xbmklock exists. Is a build running?"
[ -f "$xbmklock" ] && err "'$xbmklock' exists. Is a build running?"
touch "$xbmklock" || err "cannot create '$xbmklock'"; :
}