Easy start script: fail if unsupported option is given

This commit is contained in:
Dmitry Maksyoma 2021-07-21 19:03:30 +12:00
parent 892c285963
commit 8a11d171d5

View File

@ -150,6 +150,9 @@ process_cli_options() {
-select-de)
action=select-de-and-start
;;
*)
echo >&2 "Unsupported argument: $option"
exit 1
esac
done
}