Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/share/poudriere/common.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/share/poudriere/common.sh b/src/share/poudriere/common.sh
index 64d7f7af..ec20e80e 100755
--- a/src/share/poudriere/common.sh
+++ b/src/share/poudriere/common.sh
@@ -4612,9 +4612,11 @@ stop_builders() {
# wait for the last running processes
# the pidfiles may not contain an EOF newline so awk fixes that
- find "${MASTER_DATADIR}/var/run/" -name "*.pid" -exec \
- awk '{print}' {} + |
- xargs pwait -t 20 2>/dev/null || :
+ if [ -n "${MASTER_DATADIR}" ]; then
+ find "${MASTER_DATADIR}/var/run/" -name "*.pid" -exec \
+ awk '{print}' {} + |
+ xargs pwait -t 20 2>/dev/null || :
+ fi
if [ ${PARALLEL_JOBS} -ne 0 ]; then
msg "Stopping ${PARALLEL_JOBS} builders"