build: don't make script_path a global variable

this allows a mild cleanup of the code (reduction by 1 line)

Signed-off-by: Leah Rowe <leah@libreboot.org>
audit2-merge1
Leah Rowe 2024-05-16 11:11:25 +01:00 committed by Leah Rowe
parent fbac2d8fe6
commit 525f5525d3
1 changed files with 5 additions and 6 deletions

11
build
View File

@ -14,7 +14,7 @@ fi
. "include/option.sh"
eval "$(setvars "" script_path aur_notice vdir src_dirname srcdir _xm mode xp)"
eval "$(setvars "" aur_notice vdir src_dirname srcdir _xm mode xp)"
err="fail"
linkpath="${0}"
@ -47,9 +47,7 @@ initcmd()
case "${1}" in
version) printf "%s\n" "$relname" ;;
release) shift 1; mkrelease $@ ;;
*)
script_path="script/${1}"
return 0 ;;
*) return 0 ;;
esac
xbmk_exit 0
}
@ -91,8 +89,9 @@ git_init()
excmd()
{
[ -f "${script_path}" ] || $err "Bad command. Check $projectname docs."
shift 1; "$script_path" $@ || $err "excmd: ${script_path} ${@}"
spath="script/${1}"
[ -f "${spath}" ] || $err "Bad command. Check $projectname docs."
shift 1; "$spath" $@ || $err "excmd: ${spath} ${@}"
}
mkrelease()