diff options
| author | Leah Rowe <leah@libreboot.org> | 2025-05-03 05:33:02 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2025-05-05 12:18:22 +0100 | 
| commit | 02d60aca3004afcce03041244bb66668543fd1c4 (patch) | |
| tree | e80d981b126fa8c212b344bfa80db236062ad37c /include | |
| parent | 929240a38f0910cc960929ccddc8570a5950a323 (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>
Diffstat (limited to 'include')
| -rw-r--r-- | include/init.sh | 2 | 
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() | 
