Use find -exec + so that failures will be visible in find's exit code (#16389)

Fixes #16385
pull/16416/head
Toshio Kuratomi 9 years ago committed by Toshio Kuratomi
parent 05536b3be5
commit a7f93be2b6

@ -92,7 +92,7 @@ class ShellBase(object):
cmd = ['setfacl', '-m', 'u:%s:%s' % (user, mode)]
if recursive:
cmd = ['find', path, '-exec'] + cmd + ["'{}'", "';'"]
cmd = ['find', path, '-exec'] + cmd + ["'{}'", "'+'"]
else:
cmd.append(path)

Loading…
Cancel
Save