b288470e6b
In hindsight, we don't really need to keep the lists stored in git, as they're easy enough to generate, and GC runs are infrequent.
14 lines
382 B
Bash
Executable File
14 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This script can only be run by Damien, as it requires a copy of AnkiMobile's sources.
|
|
# A similar script could be added for AnkiDroid in the future.
|
|
#
|
|
|
|
set -e
|
|
|
|
scriptRoot=$(realpath $(dirname $0)/..)
|
|
sourceRoot=$(realpath $scriptRoot/../../mobile/ankimobile/src)
|
|
|
|
bazel run //rslib/i18n_helpers:write_ftl_json $scriptRoot/ftl/usage/ankimobile.json \
|
|
$sourceRoot
|