Skip to content

Commit 6db7ba1

Browse files
committed
test
1 parent 5ff08d1 commit 6db7ba1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/validate-translations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
changed_files=$(git diff --name-only $BASE_COMMIT $HEAD_COMMIT | grep 'assets/translations')
3131
if [ -n "$changed_files" ]; then
3232
for file in $changed_files; do
33-
folder_path=$(dirname "$file")
33+
folder_path=$(echo "$file" | sed 's|\(.*assets/translations\).*|\1|')
3434
echo "Changes detected in $folder_path"
3535
sh ./ci-scripts/validate-translations.sh "$folder_path"
3636
done

0 commit comments

Comments
 (0)