Suppose there are 2 tasks t1
, t2
which can be executed in a serial way as below:
t1 ; t2
# OR
t1 && t2
Now suppose I forgot to run t2
and t1
is already running; can I add t2
to the pipeline so that it gets executed after t1
finishes?
Suppose there are 2 tasks t1
, t2
which can be executed in a serial way as below:
t1 ; t2
# OR
t1 && t2
Now suppose I forgot to run t2
and t1
is already running; can I add t2
to the pipeline so that it gets executed after t1
finishes?