Skip to content

Commit f3ed61c

Browse files
committed
chore: Fix issue generating mvn command
1 parent be8857f commit f3ed61c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/test_dependency_compatibility.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ while IFS= read -r line; do
4040
version=$(echo "${line}" | cut -d'=' -f2 | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')
4141

4242
# Append the formatted property to the Maven command
43-
MAVEN_COMMAND+=" -D${dependency.version}=${version}"
43+
MAVEN_COMMAND+=" -D${dependency}=${version}"
4444
done < "${UPPER_BOUND_DEPENDENCY_FILE}"
4545

4646
# Run the generated maven command to test with the dependency versions

0 commit comments

Comments
 (0)