Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apache-maven/src/assembly/maven/bin/mvn
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ cmd="\"$JAVACMD\" \

# Add remaining arguments with proper quoting
for arg in "$@"; do
cmd="$cmd \"$arg\""
cmd="$cmd '$arg'"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This changes semantics "@" does already the quoting for us. I think this needs an IT.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So, according to your comment, this change is not needed and the issue it fixes is fluke?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't say its fluke, but we need to understand what this change causes and an IT with it. I wouldn't easily apply it.

done

if [ -n "$MAVEN_DEBUG_SCRIPT" ]; then
Expand Down