diff options
author | Renato Botelho <renato@netgate.com> | 2017-02-03 12:31:21 -0200 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2017-02-03 12:31:21 -0200 |
commit | 4dc9ba9fae8c63abe414d9bf76a0c73e8ef004af (patch) | |
tree | 4e08545e91dc3e8b31c0ba4e0abaa3de1b9d1aec /tools | |
parent | 23afee6645a0c1069d80cd3ef4222b1130e7cc7f (diff) | |
download | pfsense-4dc9ba9fae8c63abe414d9bf76a0c73e8ef004af.zip pfsense-4dc9ba9fae8c63abe414d9bf76a0c73e8ef004af.tar.gz |
Exit when xgettext fails
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/scripts/update_pot.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/scripts/update_pot.sh b/tools/scripts/update_pot.sh index 4d73b99..463d0a6 100755 --- a/tools/scripts/update_pot.sh +++ b/tools/scripts/update_pot.sh @@ -69,7 +69,7 @@ POT=$ROOT/src/usr/local/share/locale/pot/pfSense.pot -kForm_MultiCheckbox:2 \ -kForm_IpAddress:2 \ -kForm_Select:2 \ -) +) || exit 1 ( \ cd $ROOT && \ @@ -82,4 +82,4 @@ POT=$ROOT/src/usr/local/share/locale/pot/pfSense.pot -kForm_Checkbox:3 \ -kForm_StaticText:2 \ -kForm_MultiCheckbox:3 \ -) +) || exit 1 |