mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-01-28 16:51:26 -05:00
10 lines
197 B
Bash
Executable File
10 lines
197 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Fix TypographyEllipsis programmatically
|
|
|
|
sed -i 's/\.\.\./…/g' app/src/main/res/values*/*.xml
|
|
if git diff | grep -Eo '^\+.*…'; then
|
|
echo Fix TypographyEllipsis
|
|
exit 1
|
|
fi
|