diff options
| author | Patrick Storz <eduard.braun2@gmx.de> | 2019-03-07 19:42:53 +0000 |
|---|---|---|
| committer | Patrick Storz <eduard.braun2@gmx.de> | 2019-03-07 19:42:53 +0000 |
| commit | 3605940989c5985af7f6d7a03b2c822d872e4f61 (patch) | |
| tree | 2bddfab480c23be6889fdc3020a92a4fdc91d86a /.gitlab-ci.yml | |
| parent | Merge: Avoid the “using std::*;” or “using namespace std;” construct (diff) | |
| download | inkscape-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.yml | 4 |
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?) |
