forked from AndBible/and-bible
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (22 loc) · 697 Bytes
/
Makefile
File metadata and controls
26 lines (22 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
TMP:=$(shell mktemp -d)
# Pushing source files to transifex:
# tx push -s -r andbible.play-store-main-description
# tx push -s -r andbible.and-bible-stringsxml
# tx push -s -r andbible.bibleview-js
tx-pull:
tx pull --force --all
# Download language corrections to english (en_GB in transifex, mapped to en via transifex config)
tx pull --lang en_GB --force --minimum-perc 1
python3 play/compile_description.py
fastlane-supply:
# Remove languages unsupported by Google Play
mv fastlane/metadata/android/eo $(TMP)/
mv fastlane/metadata/android/uz $(TMP)/
fastlane supply || true
mv $(TMP)/* fastlane/metadata/android/
rmdir $(TMP)
test:
ls $(TMP)
echo $(TMP)
echo $(TMP)
ls $(TMP)