diff options
author | derpeter | 2021-04-19 21:33:21 +0200 |
---|---|---|
committer | derpeter | 2021-04-19 21:33:21 +0200 |
commit | d0daafce712633886d402df0c97968cf7faa804d (patch) | |
tree | 691a228733e6433b98256f1dc2bc859f801cd55d | |
parent | 430c2f6e21b8d17f93e12c14871dab3ff227bf35 (diff) |
remove print0
Diffstat (limited to '')
-rwxr-xr-x | deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ for cmd in find xargs php git; do done -find . -name "*.php" -print0 | grep -v archive | xargs -0 -n1 php -l +find . -name "*.php" | grep -v archive | xargs -n1 php -l if [ $? -ne 0 ]; then echo "not deploying b0rken code ;)" exit 1 |