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
This commit is contained in:
Roger Luethi 2014-08-30 12:07:46 +02:00
parent 084ed77427
commit 89edeb8044

View File

@ -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