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>
25.04_branch
Leah Rowe 2025-05-03 05:33:02 +01:00
parent e32a6c96d5
commit 2d05cd260d
1 changed files with 1 additions and 1 deletions

View File

@ -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()