diff options
author | Josh Hoyt <josh@janrain.com> | 2006-01-05 02:14:56 +0000 |
---|---|---|
committer | Josh Hoyt <josh@janrain.com> | 2006-01-05 02:14:56 +0000 |
commit | 6604a0d51b9eff5ae3724c6156eb454ac1ba9db2 (patch) | |
tree | 44b881e84736e2f73ac7fee516d09d91a3edef00 /admin | |
parent | cf5d3ca6640b799b94fbecba6a8ef403584beee1 (diff) | |
download | php-openid-6604a0d51b9eff5ae3724c6156eb454ac1ba9db2.zip php-openid-6604a0d51b9eff5ae3724c6156eb454ac1ba9db2.tar.gz php-openid-6604a0d51b9eff5ae3724c6156eb454ac1ba9db2.tar.bz2 |
[project @ Fix xargs invocation so it works with Debian stable]
Diffstat (limited to 'admin')
-rw-r--r-- | admin/nobadbraces | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/admin/nobadbraces b/admin/nobadbraces index 18f96c3..c72ef80 100644 --- a/admin/nobadbraces +++ b/admin/nobadbraces @@ -1,7 +1,8 @@ #!/usr/bin/env bash +set -e bad_functions=$(find Net Tests -name \*.php | - xargs -l1 -I FILENAME /usr/bin/env perl admin/brace_style.pl FILENAME) + xargs -l1 --replace=FILENAME /usr/bin/env perl admin/brace_style.pl FILENAME) if [ "$bad_functions" ] then |