We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bfd05c8 + 6df9d7d commit 59766bcCopy full SHA for 59766bc
1 file changed
scripts/git-find-large-files
@@ -21,6 +21,10 @@
21
22
if [ -z "$1" ]; then
23
MIN_SIZE_IN_KB=500
24
+elif ! [[ "$1" =~ ^[0-9]+$ ]]; then
25
+ echo "Error: Expecting Integer Value" >&2
26
+ echo "Usage: $0 [MIN_SIZE_IN_KB]"
27
+ exit 1
28
else
29
MIN_SIZE_IN_KB=$1
30
fi
0 commit comments