Explicitly check if postrun script exists in BASE_DIR (#351)
This commit is contained in:
parent
5e19033387
commit
5456c3801f
1 changed files with 1 additions and 1 deletions
2
build.sh
2
build.sh
|
@ -247,7 +247,7 @@ for EXPORT_DIR in ${EXPORT_DIRS}; do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ -x postrun.sh ]; then
|
if [ -x ${BASE_DIR}/postrun.sh ]; then
|
||||||
log "Begin postrun.sh"
|
log "Begin postrun.sh"
|
||||||
cd "${BASE_DIR}"
|
cd "${BASE_DIR}"
|
||||||
./postrun.sh
|
./postrun.sh
|
||||||
|
|
Loading…
Reference in a new issue