We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3c4cd5 commit 4ae24c3Copy full SHA for 4ae24c3
bin/utils.sh
@@ -98,7 +98,7 @@ quote_java_property() {
98
for opt in "$@"; do
99
is_system_property=$(echo "$opt" | grep -e "^-D")
100
if [[ -n "$is_system_property" ]]; then
101
- QUOTED_JAVA_OPTS+=(\"$opt\")
+ QUOTED_JAVA_OPTS+=("\"$opt\"")
102
else
103
QUOTED_JAVA_OPTS+=("$opt")
104
fi
0 commit comments