diff options
| author | Leah Rowe <leah@libreboot.org> | 2025-05-18 11:28:57 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2025-05-18 11:28:57 +0100 | 
| commit | 0343081d9050ca62d188face7d6fb401f43ac883 (patch) | |
| tree | b8f5d5d8d90ad93afffe1c0c84a5ba422e7f7a90 /include | |
| parent | c75bc0449d01a3a1495e75998b27fbc2a624a2ce (diff) | |
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>
Diffstat (limited to 'include')
| -rw-r--r-- | include/init.sh | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/include/init.sh b/include/init.sh index ed11dfd3..a49879d9 100644 --- a/include/init.sh +++ b/include/init.sh @@ -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" | 
