Skip to content

Commit 2e4e78a

Browse files
committed
Test bug
1 parent 758ddc5 commit 2e4e78a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/fastlane.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ jobs:
2020
for s in fastlane/metadata/android/*/full_description.txt; do
2121
size=($(wc -m "$s"));
2222
if [ ${size[0]} -gt 500 ];
23-
echo "File ${size[1]} is longer than 500 characters";
24-
then exit 1;
23+
then
24+
echo "File ${size[1]} is longer than 500 characters (is ${size[0]})";
25+
exit 1;
2526
fi
2627
done
2728

0 commit comments

Comments
 (0)