Skip to content

Commit

Permalink
fix(scripts): arg check count for protocgen
Browse files Browse the repository at this point in the history
Signed-off-by: Artur Troian <[email protected]>
  • Loading branch information
troian committed Aug 23, 2024
1 parent 48941fa commit 74cedf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/protocgen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e
set -o pipefail

if [[ $# -ne 1 ]]; then
if [[ $# -lt 1 ]]; then
echo "invalid number of parameters"
exit 1
fi
Expand Down

0 comments on commit 74cedf1

Please sign in to comment.