Skip to content

Commit bc1ff8b

Browse files
tlangslbergelson
authored andcommitted
Fixing small bug with nested subworkflows (#88)
1 parent f2d394c commit bc1ff8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cromshell

+1-1
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ function printWorkflowStatus()
914914

915915
for task in ${tasks[@]}; do
916916
if $(jq '.calls["'${task}'"][0] | has("subWorkflowMetadata")' ${metadataFile}) && ${expandSubWorkflows}; then
917-
local -r subWorkflowName=${task}
917+
local subWorkflowName=${task}
918918
echo -e "\tSubWorkflow ${subWorkflowName}"
919919

920920
for i in $(seq 0 $(($(jq -r '.calls["'${subWorkflowName}'"] | length ' ${metadataFile}) - 1))); do

0 commit comments

Comments
 (0)