mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
Fixed build-mo-files not stopping on build errors
This commit is contained in:
parent
95404ed2d7
commit
87c5316123
3 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
#
|
||||
# build mo files
|
||||
#
|
||||
set -e
|
||||
|
||||
targetDir="../aqt_data/locale/gettext"
|
||||
mkdir -p $targetDir
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# pull any pending changes from git repos
|
||||
./pull-git
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#
|
||||
# update template .pot file from source code strings
|
||||
#
|
||||
|
||||
set -e
|
||||
|
||||
topDir=$(dirname $0)/../..
|
||||
cd $topDir
|
||||
|
|
Loading…
Reference in a new issue