labs: remove redundant local declaration

Fix one instance where a variable was declared local twice.

Change-Id: I1d354b71f9d6f4bb53f67e2c96a280069195b131
This commit is contained in:
Roger Luethi 2014-08-30 12:11:06 +02:00
parent 084ed77427
commit e604cec100

View File

@ -192,7 +192,7 @@ function wait_for_autofiles {
function _autostart_queue {
local SRC_DIR=${1%/*}
# if SRC_DIR is a code, turn it into a real path
local SRC_DIR="$(src_dir_code_to_dir "$SRC_DIR")"
SRC_DIR="$(src_dir_code_to_dir "$SRC_DIR")"
local SRC_NAME=${1##*/}