You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: entrypoint.sh
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ if [ "$WAIT" = false ]; then unset WAIT; fi
33
33
34
34
# Launch the pipeline
35
35
# We use capture the JSON as variable $OUT. We encode it as base64 to get around Github secrets filters but we still mask it anyway to make sure the details don't leak.
36
-
exportOUT=$(tw -o json -v \
36
+
OUT=$(tw -o json -v \
37
37
launch \
38
38
$PIPELINE \
39
39
--params-file=params.json \
@@ -45,7 +45,7 @@ export OUT=$(tw -o json -v \
45
45
${PRE_RUN_SCRIPT:+"--pre-run=pre_run.sh"} \
46
46
${NEXTFLOW_CONFIG:+"--config=nextflow.config"} \
47
47
${WAIT:+"--wait=$WAIT"} \
48
-
2>>$LOG_FN|tee -a $LOG_FN|base64 -w 0)
48
+
2>>$LOG_FN| base64 -w 0)
49
49
50
50
# Base64 decode and extract specific value for output
0 commit comments