init.sh: move gnupath creation to create_tmpdir

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2025-05-18 11:28:15 +01:00
parent 253aa81a3f
commit c75bc0449d
+1 -1
View File
@@ -194,11 +194,11 @@ xbmk_create_tmpdir()
# /tmp might be a tmpfs, so for large files we use ./tmp, # /tmp might be a tmpfs, so for large files we use ./tmp,
# not to be confused with xbmktmp (xbmktmp points to /tmp) # not to be confused with xbmktmp (xbmktmp points to /tmp)
remkdir "$xbmktmp" "$xbmklocal" remkdir "$xbmktmp" "$xbmklocal"
remkdir "$XBMK_CACHE/gnupath" "$XBMK_CACHE/xbmkpath"
} }
xbmk_create_pathdirs() xbmk_create_pathdirs()
{ {
remkdir "$XBMK_CACHE/gnupath" "$XBMK_CACHE/xbmkpath"
( (
# set up python v3.x in PATH, in case it's not set up correctly. # set up python v3.x in PATH, in case it's not set up correctly.
# see code above that detected the correct python3 command. # see code above that detected the correct python3 command.