lib.sh: double-quote pwd to prevent globbing

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2025-04-11 20:11:51 +01:00
parent 5a0a24f555
commit 5b697b93a2
+1 -1
View File
@@ -24,7 +24,7 @@ err_()
exit 1
}
xbmkpwd=`pwd` || $err "Cannot generate PWD"
xbmkpwd="`pwd`" || $err "Cannot generate PWD"
export PWD="$xbmkpwd"
setvars()