diff options
author | Samuel Thibault <sthibault@debian.org> | 2017-01-08 00:25:43 +0000 |
---|---|---|
committer | Samuel Thibault <sthibault@debian.org> | 2017-01-08 00:25:43 +0000 |
commit | fdd44f8be109fa002643e7c6a754a84106578f51 (patch) | |
tree | 1427d3c8aa2ec3821a71377a94cba73bed4a9b44 | |
parent | d7e1a1889f771cb8f9fbca3914080037db34adca (diff) | |
download | installation-guide-fdd44f8be109fa002643e7c6a754a84106578f51.zip |
revert 65140, it breaks getting the return value
-rw-r--r-- | build/po_functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/po_functions b/build/po_functions index 6b954b3de..2d2618e2b 100644 --- a/build/po_functions +++ b/build/po_functions @@ -24,7 +24,7 @@ generate_xml () { sh -c "cd ..; ./scripts/update_po $lang" RET=$?; [ $RET -ne 0 ] && return $RET || true - sh -c "cd ..; ./scripts/create_xml $lang 2>&1 | grep -v 'found empty tag para'" + sh -c "cd ..; ./scripts/create_xml $lang" RET=$?; [ $RET -ne 0 ] && return $RET || true echo "Info: generation of XML files complete" |