Skip to content

Commit

Permalink
fix: removed the double quotes from the build arguments
Browse files Browse the repository at this point in the history
The  class doesn't apply those double quotes the same way they're applied in the command line.
  • Loading branch information
jacobdotcosta committed Dec 12, 2022
1 parent da63a2e commit 628e3f9
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ protected String projectDirectoryName() {

@Override
protected String[] buildArguments() {
return new String[] { "clean", "quarkusDev", "-s", "-Dquarkus.args=\"param1=1 param2=2\"" };
return new String[] { "clean", "quarkusDev", "-s", "-Dquarkus.args=param1=1 param2=2" };
}

protected void testDevMode() throws Exception {
Expand All @@ -35,7 +35,6 @@ protected void testDevMode() throws Exception {
String logLine;
RandomAccessFile commandOutputLogFile = new RandomAccessFile(logOutput, "r");
while ((logLine = commandOutputLogFile.readLine()) != null) {
// System.out.println("logLine: " + logLine);
if (logLine.startsWith(ARGS_LOG_LINE_PREFIX)) {
commandOutputLogFile.close();
return true;
Expand Down

0 comments on commit 628e3f9

Please sign in to comment.