No stage skip
This commit is contained in:
parent
3a447ce9e4
commit
d410cab597
1 changed files with 6 additions and 8 deletions
14
build.sh
14
build.sh
|
@ -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}
|
||||
|
||||
|
|
Reference in a new issue