summaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
authorLauris BH <lauris@nix.lv>2017-11-03 01:33:43 +0200
committerGitHub <noreply@github.com>2017-11-03 01:33:43 +0200
commit9500ad1e92d02612aedb4ff5ab201fe4dc75a1ae (patch)
tree20ab7e0dc9e5f9183dab52017174e1e8b80ca2f3 /.drone.yml
parent1f04c00e2fb8bb3c5c300712e7c1d581db4404d7 (diff)
downloadgitea-9500ad1e92d02612aedb4ff5ab201fe4dc75a1ae.tar.gz
gitea-9500ad1e92d02612aedb4ff5ab201fe4dc75a1ae.zip
Fix removing backslash before quotes in translations (#2831)
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml
index ac513ff34b..ac69c30dcd 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -26,7 +26,7 @@ pipeline:
commands:
- mv ./options/locale/locale_en-US.ini ./options/
- sed -i -e 's/="/=/g' -e 's/"$$//g' ./options/locale/*.ini
- - sed -i -e 's/\\"/"/g' ./options/locale/*.ini
+ - sed -i -e 's/\\\\"/"/g' ./options/locale/*.ini
- mv ./options/locale_en-US.ini ./options/locale/
when:
event: [ push ]