From cdb268a1187210de3ae362bfdbbe46769be3aaf1 Mon Sep 17 00:00:00 2001 From: Shun Wang Date: Sun, 17 Dec 2023 11:59:04 +0000 Subject: [PATCH] $(pwd) --- .github/workflows/translation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/translation.yml b/.github/workflows/translation.yml index 54ca6e9ce0..ebab269736 100644 --- a/.github/workflows/translation.yml +++ b/.github/workflows/translation.yml @@ -26,7 +26,7 @@ jobs: set -x find -name messages.pot messages_pot=$(find -name messages.pot) - for x in $(find ./psychopy/app/locale -type d); do + for x in $(find $(pwd)/psychopy/app/locale -type d); do pybabel update --input-file="$messages_pot" --output-dir="${x}/"; done