Fix code style
This commit is contained in:
parent
bfa840b0de
commit
e558274468
1 changed files with 2 additions and 3 deletions
5
build.sh
5
build.sh
|
@ -1,7 +1,6 @@
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
|
|
||||||
run_sub_stage()
|
run_sub_stage() {
|
||||||
{
|
|
||||||
log "Begin ${SUB_STAGE_DIR}"
|
log "Begin ${SUB_STAGE_DIR}"
|
||||||
pushd ${SUB_STAGE_DIR} > /dev/null
|
pushd ${SUB_STAGE_DIR} > /dev/null
|
||||||
for i in {00..99}; do
|
for i in {00..99}; do
|
||||||
|
@ -78,7 +77,7 @@ EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
run_stage(){
|
run_stage() {
|
||||||
log "Begin ${STAGE_DIR}"
|
log "Begin ${STAGE_DIR}"
|
||||||
STAGE=$(basename ${STAGE_DIR})
|
STAGE=$(basename ${STAGE_DIR})
|
||||||
pushd ${STAGE_DIR} > /dev/null
|
pushd ${STAGE_DIR} > /dev/null
|
||||||
|
|
Reference in a new issue