diff options
author | Leah Rowe <leah@libreboot.org> | 2023-09-26 02:01:43 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-09-26 02:01:43 +0100 |
commit | b5628131ba74e9da739f89ceb97ff2fa69010adb (patch) | |
tree | 98e9a7d2c2e393895bc66422bb6141c47232856a /script/handle/make | |
parent | f052f61fb752b58020a633a1331fafd4d1a62fda (diff) |
handle/make/config: check project in main()
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/handle/make')
-rwxr-xr-x | script/handle/make/config | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/script/handle/make/config b/script/handle/make/config index 7841d822..59b44998 100755 --- a/script/handle/make/config +++ b/script/handle/make/config @@ -49,6 +49,7 @@ main() shift; project="${OPTARG}"; shift done [ -z "${mode}" ] && fail "mode not given (-m, -u, -b, -c or -x)" + [ -z "${project}" ] && fail "project name not specified" handle_dependencies $@ handle_targets |