diff options
author | Leah Rowe <leah@libreboot.org> | 2025-04-11 20:11:51 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-04-11 20:11:51 +0100 |
commit | 5b697b93a2d7b10ab232fce905171d9a5bc9b25c (patch) | |
tree | d01659268a2ded7a717ae6604c2a4358eaf8cb54 /include/lib.sh | |
parent | 5a0a24f555985c772b8414fe88a5862d23491956 (diff) |
lib.sh: double-quote pwd to prevent globbing
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/lib.sh')
-rw-r--r-- | include/lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib.sh b/include/lib.sh index a3cdf554..68c2b847 100644 --- a/include/lib.sh +++ b/include/lib.sh @@ -24,7 +24,7 @@ err_() exit 1 } -xbmkpwd=`pwd` || $err "Cannot generate PWD" +xbmkpwd="`pwd`" || $err "Cannot generate PWD" export PWD="$xbmkpwd" setvars() |