removed quotes from lists -- should fix the bug?

This commit is contained in:
mcguirepr89
2022-05-09 09:25:01 -04:00
parent 9aea333553
commit aa4908559c
+2 -2
View File
@@ -110,12 +110,12 @@ run_analysis() {
fi fi
# prepare optional parameters for analyze.py # prepare optional parameters for analyze.py
if [ -f ${INCLUDE_LIST} ]; then if [ -f ${INCLUDE_LIST} ]; then
INCLUDEPARAM="--include_list \"${INCLUDE_LIST}\"" INCLUDEPARAM="--include_list ${INCLUDE_LIST}"
else else
INCLUDEPARAM="" INCLUDEPARAM=""
fi fi
if [ -f ${EXCLUDE_LIST} ]; then if [ -f ${EXCLUDE_LIST} ]; then
EXCLUDEPARAM="--exclude_list \"${EXCLUDE_LIST}\"" EXCLUDEPARAM="--exclude_list ${EXCLUDE_LIST}"
else else
EXCLUDEPARAM="" EXCLUDEPARAM=""
fi fi