diff options
author | Leah Rowe <leah@libreboot.org> | 2023-05-18 09:55:40 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-05-18 09:55:40 +0100 |
commit | c08e3258cbada3f192c19349cd7d8afb62025c8f (patch) | |
tree | 334e4e5a2d2deb697d34dc4acadab7a856522825 | |
parent | c51225577b077401de0b5e79d8b288019e5bb44d (diff) |
.gitcheck: exit 1 if unsupported argument given
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rwxr-xr-x | .gitcheck | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -10,10 +10,13 @@ main() { if [ $# -gt 0 ]; then if [ "${1}" = "clean" ]; then - clean + clean > /dev/null 2> /dev/null + else + printf "%s: Unsupported argument\n" $0 + exit 1 fi else - set_placeholders + set_placeholders > /dev/null 2> /dev/null fi } @@ -76,4 +79,4 @@ unset_placeholders() fi } -main $@ > /dev/null 2> /dev/null +main $@ |