diff options
author | EuAndreh <eu@euandre.org> | 2022-01-20 23:29:42 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-01-20 23:29:42 -0300 |
commit | 7bb30b4d8ec7fdb24b23b02f04897d9b0480056f (patch) | |
tree | da43640e508355eb73a3492e79546a312b1cf66d /src | |
parent | aux/workflow/TODOs.sh: Fix catenation of aux/workflow/preamble.md (diff) | |
download | git-permalink-7bb30b4d8ec7fdb24b23b02f04897d9b0480056f.tar.gz git-permalink-7bb30b4d8ec7fdb24b23b02f04897d9b0480056f.tar.xz |
Add diacritic and spaces to mk{s,d}temp paths to enforce that everything works with it
Diffstat (limited to '')
-rwxr-xr-x | src/git-permalink.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/git-permalink.in b/src/git-permalink.in index bb7a09e..0334ecb 100755 --- a/src/git-permalink.in +++ b/src/git-permalink.in @@ -64,7 +64,7 @@ dump_translatable_strings() { EOF for msg in $MSGS; do # shellcheck disable=2016 - printf 'MSG_%s="$(cat @LOCALEDIR@/@LANG@/LC_MESSAGES/@NAME@/%s.@LANG@.txt)"\n' \ + printf "MSG_%s=\"\$(cat '@LOCALEDIR@/@LANG@/LC_MESSAGES/@NAME@/%s.@LANG@.txt')\"\n" \ "$msg" "$msg" done } |