Skip to content

Commit 4b79265

Browse files
committed
Add RUST_BACKTRACE=1 to Nimble run
1 parent 47de093 commit 4b79265

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

singlecell/src/org/labkey/singlecell/run/NimbleHelper.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,9 @@ private boolean runUsingDocker(List<String> nimbleArgs, PipelineStepOutput outpu
441441
writer.println("\t-v \"${WD}:/work\" \\");
442442
writer.println("\t-v \"${HOME}:/homeDir\" \\");
443443
writer.println("\t-u $UID \\");
444-
writer.println("\t-e USERID=$UID \\");
444+
writer.println("\t-e RUST_BACKTRACE=1 \\");
445445
writer.println("\t-e TMPDIR=/work/tmpDir \\");
446+
writer.println("\t-e USERID=$UID \\");
446447
writer.println("\t--entrypoint /bin/bash \\");
447448
writer.println("\t-w /work \\");
448449
writer.println("\t" + DOCKER_CONTAINER_NAME + " \\");

0 commit comments

Comments
 (0)