diff options
author | Leah Rowe <leah@libreboot.org> | 2024-05-15 03:01:25 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-05-15 03:04:41 +0100 |
commit | e281966f2278802d3d59e386a1e5456e0e8b368d (patch) | |
tree | de35f13e958b604561cef2f3f636f25cc8414c29 /build | |
parent | ee2bf0d25aafeb97379ec4b35fd6308fb07d8051 (diff) |
remove check_project() (always set variables)
in lbmk, we call check_project() to set variables
such as projectname, version, version date
this is unnecessary, because all main scripts use
this functionality anyway
do it by default
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'build')
-rwxr-xr-x | build | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -29,7 +29,7 @@ main() [ "$1" = "dependencies" ] && x_ install_packages $@ && lbmk_exit 0 - for cmd in initcmd check_git check_project git_init excmd; do + for cmd in initcmd check_git git_init excmd; do eval "${cmd} \$@" done lbmk_exit 0 @@ -39,8 +39,6 @@ initcmd() { [ "$(id -u)" != "0" ] || $err "this command as root is not permitted" - check_project - case "${1}" in help) usage ${0} ;; list) items "script" ;; @@ -136,8 +134,6 @@ mkrelease() esac done - check_project - vdir="${vdir}/${version}" [ "${mode}" = "u-boot" ] && relname="u-boot-for-${relname}" src_dirname="${relname}_src" |