Skip to content

Commit b5b6a5e

Browse files
committed
Fixed build-github-release command line validation.
1 parent 4cc2822 commit b5b6a5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/utils/build-github-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -e
33

4-
if [[ ${#} -ne 2 ]]
4+
if [[ ${#} -lt 2 ]]
55
then
66
echo "Usage: ${0} [file] [version]" >&2
77
exit 1

0 commit comments

Comments
 (0)