We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 919d245 commit 5927ad1Copy full SHA for 5927ad1
1 file changed
tools/check-size.sh
@@ -27,14 +27,18 @@ for tutorial in $tutorials; do
27
echo -e "$img:$RED $actualsize kb exceeds the limit of $MAXIMUMGIFSIZE kb. $NOCOLOR"
28
CODE=1
29
else
30
+ if [ "${1:-}" = "-v" ]; then
31
echo -e "$img: $actualsize kb (Ok)."
32
+ fi
33
fi
34
35
if [ "${actualsize}" -ge "${MAXIMUMSIZE}" ]; then
36
echo -e "$img:$RED $actualsize kb exceeds the limit of $MAXIMUMSIZE kb. $NOCOLOR"
37
38
- echo -e "$img: $actualsize kb (Ok)."
39
40
+ echo -e "$img: $actualsize kb (Ok)."
41
42
43
44
done
0 commit comments