[network/kdeconnect-android] fastlane: Fix if condition
Albert Vaca Cintora <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 5c5768667b1afc181a9420797b43ed93e9264db4 by Albert Vaca Cintora.
Committed on 17/08/2026 at 09:50.
Pushed by albertvaka into branch 'master'.
Fix if condition
M +1 -1 fastlane/StaticMessages.sh
https://invent.kde.org/network/kdeconnect-android/-/commit/5c5768667b1afc181a9420797b43ed93e9264db4
diff --git a/fastlane/StaticMessages.sh b/fastlane/StaticMessages.sh
index da3bedb78..d0bed03e6 100644
--- a/fastlane/StaticMessages.sh
+++ b/fastlane/StaticMessages.sh
@@ -29,7 +29,7 @@ function import_po_dirs # First parameter will be a path that will be a director
fi
done
for lang in $(ls $podir); do
- if [ -f $podir/$lang/kdeconnect-android-store-short.po ] && [ $podir/$lang/kdeconnect-android-store-full.po ]; then
+ if [ -f $podir/$lang/kdeconnect-android-store-short.po ] && [ -f $podir/$lang/kdeconnect-android-store-full.po ]; then
mkdir -p ./metadata/android/$lang/
cp ./metadata/android/en-US/title.txt ./metadata/android/$lang/title.txt # we do not translate the app name
po2txt --fuzzy --progress=names -i $podir/$lang/kdeconnect-android-store-short.po -o ./metadata/android/$lang/short_description.txt