Skip to content

Commit 5743b06

Browse files
committed
cwltool: always pass --disable-color to improve logs
1 parent 8bd8c4a commit 5743b06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/commonwl/view/cwl/CWLTool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public String getVersion() {
101101
private String runCwltoolOnWorkflow(String argument, String workflowUrl) throws CWLValidationException {
102102
try {
103103
// Run command
104-
String[] command = {"cwltool", "--non-strict", "--quiet", "--skip-schemas", argument, workflowUrl};
104+
String[] command = {"cwltool", "--disable-color", "--non-strict", "--quiet", "--skip-schemas", argument, workflowUrl};
105105
ProcessBuilder cwlToolProcess = new ProcessBuilder(command);
106106
Process process = cwlToolProcess.start();
107107

0 commit comments

Comments
 (0)