diff options
author | Leah Rowe <leah@libreboot.org> | 2025-10-04 02:43:24 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-10-04 02:43:24 +0100 |
commit | 0605fbe72032125c8b430f1454794be40ab61009 (patch) | |
tree | 54f2c020a8b3a09f1c84c930680924e90dfb5ccd /include/release.sh | |
parent | e1c70f43198e7d709026ab7cd0422adc24083bd4 (diff) |
xbmk: general cleanup: unroll condensed code lines
i overlooked a number of lines, during previous cleanup
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/release.sh')
-rw-r--r-- | include/release.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/release.sh b/include/release.sh index b4a9ea98..f1783dcf 100644 --- a/include/release.sh +++ b/include/release.sh @@ -10,7 +10,8 @@ release() reldir="release" - while getopts m: option; do + while getopts m: option + do if [ -z "$OPTARG" ]; then err "empty argument not allowed" "release" "$@" fi |