From c7ade55d390c3c5d4ebd8cecb97015ab1f8e6b15 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Wed, 1 Nov 2017 23:46:28 +0800 Subject: [PATCH] fix update-translations on drone (#2822) --- .drone.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.drone.yml b/.drone.yml index 5151c2a33..ac513ff34 100644 --- a/.drone.yml +++ b/.drone.yml @@ -24,8 +24,10 @@ pipeline: update-translations: image: alpine:3.6 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 + - mv ./options/locale_en-US.ini ./options/locale/ when: event: [ push ] branch: [ master ]