mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
* Add script to remove untranslated language JSON files * Remove untranslated languages in CI * Add release notes
20 lines
480 B
Bash
Executable File
20 lines
480 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
ROOT=`dirname $0`
|
|
|
|
cd "$ROOT/.."
|
|
|
|
echo "Updating translations..."
|
|
if ! [ -d packages/desktop-client/locale ]; then
|
|
git clone https://github.com/actualbudget/translations packages/desktop-client/locale
|
|
fi
|
|
pushd packages/desktop-client/locale > /dev/null
|
|
git pull
|
|
popd > /dev/null
|
|
packages/desktop-client/bin/remove-untranslated-languages
|
|
|
|
yarn workspace loot-core build:browser
|
|
yarn workspace @actual-app/web build:browser
|
|
|
|
echo "packages/desktop-client/build"
|