From c287d33ee3b0b7a57ec72ae1ee6587febb4c0d9b Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Fri, 18 Mar 2011 01:52:00 +0100 Subject: [PATCH] use correct finish variable Signed-off-by: Nico Schottelius --- bin/cdist-remote-code-run | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/cdist-remote-code-run b/bin/cdist-remote-code-run index 7fa6a4f6..009c0743 100755 --- a/bin/cdist-remote-code-run +++ b/bin/cdist-remote-code-run @@ -49,7 +49,7 @@ echo "Checking code for $object ..." if [ -f "$require" ]; then while read requirement; do - echo "Requiring object $requirement for $object ..." + echo "Requiring dependency $requirement for $object ..." cdist-remote-code-run "$__cdist_out_object_dir" "$requirement" done < "$require" fi @@ -57,9 +57,9 @@ fi if [ -e "$code" ]; then if [ -f "$code" ]; then if [ -x "$code" ]; then - echo "Executing code for $object ..." + echo "Executing code for $object ..." "$code" - touch "$__cdist_finished" + touch "$finished" else __cdist_exit_err "$code exists, but is not executable." fi