From 89edeb804449731ee2ca234adf5dafefaac168e0 Mon Sep 17 00:00:00 2001 From: Roger Luethi Date: Sat, 30 Aug 2014 12:07:46 +0200 Subject: [PATCH] labs: fix name for local variable declaration Fix one instance where the variable name that was declared local differed from the variable name actually used in the code. Change-Id: Iee56ab527291a1c70455f7cc8fbd7316e29b1611 --- labs/lib/osbash/functions.host | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/lib/osbash/functions.host b/labs/lib/osbash/functions.host index 5dc2ed4f..dbad7648 100644 --- a/labs/lib/osbash/functions.host +++ b/labs/lib/osbash/functions.host @@ -135,7 +135,7 @@ function ssh_process_autostart { vm_ssh "$SSH_PORT" "rm -rf lib config autostart" vm_scp_to_vm "$SSH_PORT" "$TOP_DIR/lib" "$TOP_DIR/config" - local SCR_PATH="" + local SCRIPT_PATH="" for SCRIPT_PATH in "$AUTOSTART_DIR/"*.sh; do ssh_exec_script "$SSH_PORT" "$SCRIPT_PATH" rm -f "$SCRIPT_PATH" >&2