Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
siewrgrz committed Mar 17, 2020
1 parent 548fc39 commit 495db59
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ public void runDTrackScript(CreateScanRequest createScanRequest, Project project

ProcessBuilder builder = new ProcessBuilder();
builder.command("sh", "-c", script,project.getdTrackUuid(), createScanRequest.getdTrackUrl(), createScanRequest.getdTrackToken());
logger.info("Running {} inside {}",String.join(" ",
Arrays.asList("sh", "-c", script,project.getdTrackUuid(), createScanRequest.getdTrackUrl(), createScanRequest.getdTrackToken())),
path.toFile());
builder.directory(path.toFile());
Process process = builder.start();
}
Expand Down

0 comments on commit 495db59

Please sign in to comment.