1
0
Fork 0

No stage skip

This commit is contained in:
Braiden Vasco 2017-07-02 15:58:56 +00:00
parent 3a447ce9e4
commit d410cab597

View file

@ -76,14 +76,12 @@ run_stage() {
unmount ${WORK_DIR}/${STAGE}
if [ ! -f SKIP ]; then
for SUB_STAGE_DIR in ${STAGE_DIR}/*; do
if [ -d ${SUB_STAGE_DIR} ] &&
[ ! -f ${SUB_STAGE_DIR}/SKIP ]; then
run_sub_stage
fi
done
fi
for SUB_STAGE_DIR in ${STAGE_DIR}/*; do
if [ -d ${SUB_STAGE_DIR} ] &&
[ ! -f ${SUB_STAGE_DIR}/SKIP ]; then
run_sub_stage
fi
done
unmount ${WORK_DIR}/${STAGE}