1
0
Fork 0

No substage skip

This commit is contained in:
Braiden Vasco 2017-07-02 15:59:14 +00:00
parent d410cab597
commit f732166442

View file

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