Skip to content

Commit 8d6ba46

Browse files
committed
add newline between matched jar files to fix filtering
1 parent 14f4269 commit 8d6ba46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/common.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ else
6060
fi
6161

6262
# After determining the directory, look for the hefquin-cli JAR file in that directory, and ..
63-
HEFQUIN_CP=$(echo ${HEFQUIN_JAR_DIR}hefquin-cli-*.jar | grep -vE '(-sources|-javadoc)\.jar')
63+
HEFQUIN_CP=$(printf "%s\n" ${HEFQUIN_JAR_DIR}hefquin-cli-*.jar | grep -vE '(-sources|-javadoc)\.jar')
6464
# .. check that the JAR file is actually there
6565
if [ ! -f ${HEFQUIN_CP} ]; then
6666
echo "Cannot find the HeFQUIN JAR file in ${HEFQUIN_JAR_DIR}"

0 commit comments

Comments
 (0)