removed quotes from lists -- should fix the bug?
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user