Skip to content

Commit

Permalink
Update deploy/aws/java11Exec/src/main/java/poseidon/App.java
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastian Serth <MrSerth@users.noreply.github.com>
  • Loading branch information
mpass99 and MrSerth committed Sep 22, 2024
1 parent 43bd306 commit 3cb99ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/aws/java11Exec/src/main/java/poseidon/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public APIGatewayProxyResponseEvent handleRequest(final APIGatewayV2WebSocketEve
ProcessBuilder pb = new ProcessBuilder(cmd);
pb.directory(workingDirectory);
Map<String, String> env = pb.environment();
env.put("CLASSPATH", ".:/var/task/lib/org.hamcrest.hamcrest-core-3.0.jar:/var/task/lib/junit.junit-4.13.2.jar:" + env.get("CLASSPATH"));
env.put("CLASSPATH", ".:/var/task/lib/org.hamcrest.hamcrest-3.0.jar:/var/task/lib/junit.junit-4.13.2.jar:" + env.get("CLASSPATH"));
Process p = pb.start();
InputStream stdout = p.getInputStream(), stderr = p.getErrorStream();
this.forwardOutput(p, stdout, stderr);
Expand Down

0 comments on commit 3cb99ab

Please sign in to comment.