Skip to content

Commit b174aba

Browse files
committed
scripts/ImportExportTest.sh: Fix "${OUTPUT[*]}".
1 parent b56121f commit b174aba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ImportExportTest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ do
219219
then
220220
IFS=' ' read -ra OUTPUT_ARRAY <<< "${OUTPUT}"
221221
NSOURCES=$((NSOURCES - 1 + ${#OUTPUT_ARRAY[@]}))
222-
testImportExportEquivalence "$solfile" "${OUTPUT_ARRAY[@]}"
222+
testImportExportEquivalence "$solfile" "${OUTPUT_ARRAY[*]}"
223223
elif [ ${SPLITSOURCES_RC} == 1 ]
224224
then
225225
testImportExportEquivalence "$solfile" "$solfile"

0 commit comments

Comments
 (0)