Skip to content
Snippets Groups Projects
Unverified Commit 2b517ecf authored by Michal 'vorner' Vaner's avatar Michal 'vorner' Vaner
Browse files

create_notification: Fix number of params check

We added a parameter, so we need to add one to the checked number.
parent 109d1f64
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ if [ "$1" = -d ] ; then
shift 2
fi
if [ $# -ne 3 ]; then
if [ $# -ne 4 ]; then
usage
exit 1
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment