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}
|
unmount ${WORK_DIR}/${STAGE}
|
||||||
|
|
||||||
if [ ! -f SKIP ]; then
|
for SUB_STAGE_DIR in ${STAGE_DIR}/*; do
|
||||||
for SUB_STAGE_DIR in ${STAGE_DIR}/*; do
|
if [ -d ${SUB_STAGE_DIR} ] &&
|
||||||
if [ -d ${SUB_STAGE_DIR} ] &&
|
[ ! -f ${SUB_STAGE_DIR}/SKIP ]; then
|
||||||
[ ! -f ${SUB_STAGE_DIR}/SKIP ]; then
|
run_sub_stage
|
||||||
run_sub_stage
|
fi
|
||||||
fi
|
done
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
unmount ${WORK_DIR}/${STAGE}
|
unmount ${WORK_DIR}/${STAGE}
|
||||||
|
|
||||||
|
|
Reference in a new issue