From aa4908559c6c4737fa6407f0408b85d9f45167d2 Mon Sep 17 00:00:00 2001 From: mcguirepr89 Date: Mon, 9 May 2022 09:25:01 -0400 Subject: [PATCH] removed quotes from lists -- should fix the bug? --- scripts/birdnet_analysis.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/birdnet_analysis.sh b/scripts/birdnet_analysis.sh index b681c41..582944f 100755 --- a/scripts/birdnet_analysis.sh +++ b/scripts/birdnet_analysis.sh @@ -110,12 +110,12 @@ run_analysis() { fi # prepare optional parameters for analyze.py if [ -f ${INCLUDE_LIST} ]; then - INCLUDEPARAM="--include_list \"${INCLUDE_LIST}\"" + INCLUDEPARAM="--include_list ${INCLUDE_LIST}" else INCLUDEPARAM="" fi if [ -f ${EXCLUDE_LIST} ]; then - EXCLUDEPARAM="--exclude_list \"${EXCLUDE_LIST}\"" + EXCLUDEPARAM="--exclude_list ${EXCLUDE_LIST}" else EXCLUDEPARAM="" fi