.gitcheck: exit 1 if unsupported argument given

Signed-off-by: Leah Rowe <leah@libreboot.org>
fsdg20230625
Leah Rowe 2023-05-18 09:55:40 +01:00
parent c51225577b
commit c08e3258cb
1 changed files with 6 additions and 3 deletions

View File

@ -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 $@