mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

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.
13 lines
382 B
Bash
Executable file
13 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
|