Merge "Use xargs -0 instead of --null"

This commit is contained in:
Jenkins 2014-04-07 11:21:42 +00:00 committed by Gerrit Code Review
commit 3ac36f730d

View File

@ -22,7 +22,7 @@ commands =
flake8 {posargs}
{toxinidir}/tools/config/check_uptodate.sh
# Check that .po and .pot files are valid:
bash -c "find ironic -type f -regex '.*\.pot?' -print0|xargs --null -n 1 msgfmt --check-format -o /dev/null"
bash -c "find ironic -type f -regex '.*\.pot?' -print0|xargs -0 -n 1 msgfmt --check-format -o /dev/null"
[testenv:cover]
setenv = VIRTUAL_ENV={envdir}