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>
20240612_branch
Leah Rowe 2024-05-16 11:11:25 +01:00
parent 839ef680cd
commit b76a70c3f9
1 changed files with 5 additions and 6 deletions

11
build
View File

@ -16,7 +16,7 @@ fi
. "include/vendor.sh" . "include/vendor.sh"
. "include/mrc.sh" . "include/mrc.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" err="fail"
linkpath="${0}" linkpath="${0}"
@ -51,9 +51,7 @@ initcmd()
release) shift 1; mkrelease $@ ;; release) shift 1; mkrelease $@ ;;
inject) shift 1; vendor_inject $@ ;; inject) shift 1; vendor_inject $@ ;;
download) shift 1; vendor_download $@ ;; download) shift 1; vendor_download $@ ;;
*) *) return 0 ;;
script_path="script/${1}"
return 0 ;;
esac esac
set -u -e # some commands disable them. turn them on! set -u -e # some commands disable them. turn them on!
xbmk_exit 0 xbmk_exit 0
@ -96,8 +94,9 @@ git_init()
excmd() excmd()
{ {
[ -f "${script_path}" ] || $err "Bad command. Check $projectname docs." spath="script/${1}"
shift 1; "$script_path" $@ || $err "excmd: ${script_path} ${@}" [ -f "${spath}" ] || $err "Bad command. Check $projectname docs."
shift 1; "$spath" $@ || $err "excmd: ${spath} ${@}"
} }
mkrelease() mkrelease()