Skip to content

Commit

Permalink
Fixes #17258: Parent breaks generation
Browse files Browse the repository at this point in the history
  • Loading branch information
amousset committed Apr 27, 2020
1 parent 59b5383 commit 5ca59a8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ if [ "${RUDDER_NODE_ID}" != "root" ]; then
/bin/chgrp rudder-policy-reader "${RUDDER_POLICIES_DIRECTORY_NEW}/.."
r4=$?
# Return aggregated error code
[ $r1 -eq 0 ] && [ $r2 -eq 0 ] && [ $r3 -eq 0 ] && [ $r4 -eq 0 ]
[ $r2 -eq 0 ] && [ $r3 -eq 0 ] && [ $r4 -eq 0 ]
else
# Return aggregated error code
[ $r1 -eq 0 ] && [ $r2 -eq 0 ]
[ $r2 -eq 0 ]
fi

0 comments on commit 5ca59a8

Please sign in to comment.