summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorPatrick Storz <eduard.braun2@gmx.de>2019-03-07 19:42:53 +0000
committerPatrick Storz <eduard.braun2@gmx.de>2019-03-07 19:42:53 +0000
commit3605940989c5985af7f6d7a03b2c822d872e4f61 (patch)
tree2bddfab480c23be6889fdc3020a92a4fdc91d86a /.gitlab-ci.yml
parentMerge: Avoid the “using std::*;” or “using namespace std;” construct (diff)
downloadinkscape-3605940989c5985af7f6d7a03b2c822d872e4f61.tar.gz
inkscape-3605940989c5985af7f6d7a03b2c822d872e4f61.zip
CI: Work around https://gitlab.com/gitlab-org/gitlab-ce/issues/20731
even script commands like "false && ..." would never fail a build...
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b64f140e6..e473b8d99 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -158,7 +158,7 @@ translations:
- schedules
script:
# make sure dependencies for inkscape.pot are up-to-date
- - mkdir build && cd build && cmake .. && make inkscape_pot && cd ..
+ - mkdir build && cd build && cmake .. && make inkscape_pot && cd .. || exit 1
- cd po/
# update POTFILES.in
@@ -167,7 +167,7 @@ translations:
- grep -v "^#" POTFILES.in > POTFILES.in.2
# update inkscape.pot and sync all .po files
- - intltool-update --pot && mv untitled.pot inkscape.pot
+ - intltool-update --pot --gettext-package=inkscape
- ./update_po_files.sh
# check if POTFILES.in should be updated in the repo (shall we automate this?)