summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-05-03 05:33:02 +0100
committerLeah Rowe <leah@libreboot.org>2025-05-03 05:33:02 +0100
commit0ffaf5c7331ae0fac9db8cf8a2b670e156fad7e9 (patch)
treed9917c8f0c7c8865263eece63b8eb689dab19207
parentfcc52b986e7612d8bb53e9b51f305c62f611a35b (diff)
init.sh: Explicitly create the xbmktmp directory
mktemp would normally do it, but we must not rely on that Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r--include/init.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/init.sh b/include/init.sh
index 9e0e3a37..c40894a1 100644
--- a/include/init.sh
+++ b/include/init.sh
@@ -197,7 +197,7 @@ xbmk_create_tmpdir()
# /tmp might be a tmpfs, so for large files we use ./tmp,
# not to be confused with xbmktmp (xbmktmp points to /tmp)
- x_ mkdir -p tmp
+ x_ mkdir -p "$xbmktmp" tmp
}
xbmk_lock()