From 55b38eb756fe5c48e856784f8251096c63fa395b Mon Sep 17 00:00:00 2001 From: Shun Wang Date: Sun, 17 Dec 2023 11:56:28 +0000 Subject: [PATCH] fix path type --- .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 049840bf70..54ca6e9ce0 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 {{ github.workspace }}/psychopy/app/locale -type d); do + for x in $(find ./psychopy/app/locale -type d); do pybabel update --input-file="$messages_pot" --output-dir="${x}/"; done