25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
source $prev_env
fi
# source the environment from the previous step if it exists
# if a logpro file exists then use it otherwise just run the command, nb// was using 2>&1
if [ -e ${stepname}.logpro ];then
$command 2>&1| logpro ${stepname}.logpro ${stepname}.html &> ${stepname}.log
allstatus=(${PIPESTATUS[0]} ${PIPESTATUS[1]})
runstatus=${allstatus[0]}
logprostatus=${allstatus[1]}
else
$command &> ${stepname}.log
runstatus=$?
logprostatus=$runstatus
fi
# If the test exits with non-zero, we will record FAIL even if logpro
|
>
>
>
|
>
|
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
source $prev_env
fi
# source the environment from the previous step if it exists
# if a logpro file exists then use it otherwise just run the command, nb// was using 2>&1
if [ -e ${stepname}.logpro ];then
# could do:
$command 2>&1| tee ${stepname}.log | logpro ${stepname}.logpro ${stepname}.html &> /dev/null
logprostatus=$?
# $command 2>&1| logpro ${stepname}.logpro ${stepname}.html &> ${stepname}.log
# allstatus=(${PIPESTATUS[0]} ${PIPESTATUS[1]})
allstatus=(${PIPESTATUS[0]} ${PIPESTATUS[1]})
runstatus=${allstatus[0]}
# logprostatus=${allstatus[1]}
else
$command &> ${stepname}.log
runstatus=$?
logprostatus=$runstatus
fi
# If the test exits with non-zero, we will record FAIL even if logpro
|