init.sh: xbmk_create_tmpdir to xbmk_mkdirs

this function now simply creates directories that lbmk
will use, rather than creating specific directories.

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2025-05-18 11:28:57 +01:00
parent c75bc0449d
commit 0343081d90
+2 -2
View File
@@ -31,7 +31,7 @@ xbmk_init()
[ "$(id -u)" != "0" ] || err "this command as root is not permitted"
for init_cmd in set_pyver set_version set_env lock git_init \
create_tmpdir create_pathdirs child_exec; do
mkdirs create_pathdirs child_exec; do
xbmk_$init_cmd "$@" || break
done
}
@@ -187,7 +187,7 @@ xbmk_git_init()
2>/dev/null; :
}
xbmk_create_tmpdir()
xbmk_mkdirs()
{
x_ mkdir -p "$xbmklocal"