Files
comaps/tools/unix/update_gplay_relnotes.sh
Konstantin Pastbin e3e4a1985a Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)
To expand with full Organic Maps and Maps.ME commits history run:
  git remote add om-historic [om-historic.git repo url]
  git fetch --tags om-historic
  git replace squashed-history historic-commits
2025-05-08 21:10:51 +07:00

14 lines
340 B
Bash
Executable File

#!/bin/bash
# Concatenates Android release notes in all languages into a single output format
# suitable to upload to Google Play to update existing notes.
GPLAY_NOTES=android/app/src/google/play/release-notes/*/default.txt
for x in $(ls $GPLAY_NOTES); do
l=$(basename $(dirname $x));
echo "<"$l">";
cat $x;
echo "</"$l">";
done