summaryrefslogtreecommitdiff
path: root/sync_translations.sh
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-08-16 13:40:22 +0200
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2023-09-25 09:43:37 +0200
commita3964b9ed1b19ee1ca58f724b35468397b87a366 (patch)
treedd638ff9734b87478ae5fd0db23870e9d9da0a67 /sync_translations.sh
parent231f7b924a28c5c08e9b7ee9ddd60343589705f6 (diff)
Sync translations: fix shellcheck warning
Diffstat (limited to 'sync_translations.sh')
-rwxr-xr-xsync_translations.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sync_translations.sh b/sync_translations.sh
index ae61df1..18f49c7 100755
--- a/sync_translations.sh
+++ b/sync_translations.sh
@@ -6,6 +6,6 @@ go generate ./...
files=$(find client/locales -iname "out.gotext.json")
for f in $files
do
- dir=$(dirname $f)
+ dir=$(dirname "$f")
cp "$f" "$dir"/messages.gotext.json
done