Fix code style
This commit is contained in:
parent
1ddbdcbc80
commit
091381bec2
1 changed files with 3 additions and 3 deletions
6
build.sh
6
build.sh
|
@ -70,9 +70,9 @@ run_stage() {
|
||||||
log_begin "$STAGE_DIR"
|
log_begin "$STAGE_DIR"
|
||||||
pushd "$STAGE_DIR" > /dev/null
|
pushd "$STAGE_DIR" > /dev/null
|
||||||
|
|
||||||
STAGE=$(basename ${STAGE_DIR})
|
STAGE=$(basename "$STAGE_DIR")
|
||||||
STAGE_WORK_DIR=${WORK_DIR}/${STAGE}
|
STAGE_WORK_DIR="$WORK_DIR/$STAGE"
|
||||||
ROOTFS_DIR=${STAGE_WORK_DIR}/rootfs
|
ROOTFS_DIR="$STAGE_WORK_DIR/rootfs"
|
||||||
|
|
||||||
unmount "$WORK_DIR/$STAGE"
|
unmount "$WORK_DIR/$STAGE"
|
||||||
|
|
||||||
|
|
Reference in a new issue