ABORT if explorer fails, not only WARN

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-03-28 15:16:48 +02:00
parent 02a2d39ebf
commit 62c4f0d086
1 changed files with 4 additions and 4 deletions

View File

@ -57,16 +57,16 @@ for explorer in "$__cdist_explorer_dir/"*; do
if [ -f "$explorer" ]; then
if [ ! -x "$explorer" ]; then
echo "Explorer \"$explorer\" exists, but is not executable."
continue
echo "Explorer \"$explorer\" exists, but is not executable." >&2
exit 1
fi
# Execute explorers and save results in remote destination directory
"$explorer" > "${__cdist_my_out_dir}/$explorer_name"
else
if [ -e "$explorer" ]; then
echo "Explorer \"$explorer\" exists, but is not a file."
continue
echo "Explorer \"$explorer\" exists, but is not a file." >&2
exit 1
fi
fi
done