dont fail just because grep in subshell exited non-zero

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2014-10-22 14:32:32 +02:00
parent 39eb73a1d5
commit 28027f4261
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ fi
# Determine the current state
entry="$(cat "$__object/files/should")"
state_should="$(cat "$__object/parameter/state")"
num_existing_entries=$(grep -c -F -x "$entry" "$__object/explorer/entry")
num_existing_entries=$(grep -c -F -x "$entry" "$__object/explorer/entry" || true)
if [ $num_existing_entries -eq 1 ]; then
state_is="present"
else