diff options
author | Leander <[email protected]> | 2019-11-26 16:03:48 +0100 |
---|---|---|
committer | XECDesign <[email protected]> | 2019-11-26 15:03:47 +0000 |
commit | 5456c3801fc7ef99d1563cd54e581cb9b3d54c4a (patch) | |
tree | 4354f28258bca64ad2be4460e1794dc6f4785a29 /build.sh | |
parent | 5e190333878c45695990a861092991bb5c2cfd15 (diff) |
Explicitly check if postrun script exists in BASE_DIR (#351)
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -247,7 +247,7 @@ for EXPORT_DIR in ${EXPORT_DIRS}; do fi done -if [ -x postrun.sh ]; then +if [ -x ${BASE_DIR}/postrun.sh ]; then log "Begin postrun.sh" cd "${BASE_DIR}" ./postrun.sh |