Skip to content

Commit

Permalink
Fix some failing feature graphic generations
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLastProject committed Feb 18, 2024
1 parent 2b8214e commit 9c37d24
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .scripts/generate_feature_graphic/generate_feature_graphic.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ for lang in "$script_location/../../fastlane/metadata/android/"*; do
if grep -q — title.txt; then
# Try splitting title.txt on — (em dash)
IFS='' read -r appname subtext < title.txt
elif grep -q – title.txt; then
# No result, try splitting title.txt on – (en dash)
IFS='' read -r appname subtext < title.txt
else
# No result, try splitting on - (dash)
IFS='-' read -r appname subtext < title.txt
Expand Down

0 comments on commit 9c37d24

Please sign in to comment.