prevent subsequent builds from failing when fetching translations (#4485)

* bring back deleted files for subsequent builds

* note
This commit is contained in:
Matt Fiddaman
2025-03-01 02:49:41 +00:00
committed by GitHub
parent 61364fb846
commit 1425671d16
3 changed files with 8 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ 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 checkout .
git pull
popd > /dev/null
packages/desktop-client/bin/remove-untranslated-languages

View File

@@ -42,6 +42,7 @@ 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 checkout .
git pull
popd > /dev/null
packages/desktop-client/bin/remove-untranslated-languages

View File

@@ -0,0 +1,6 @@
---
category: Maintenance
authors: [matt-fidd]
---
Prevent subsequent builds from failing when fetching translations