--- buildman/bm 2025/03/10 17:08:20 1.6 +++ buildman/bm 2025/03/10 17:17:29 1.9 @@ -283,12 +283,12 @@ case $ACTION in if [ -f "${BUILD_WANTED}" ] then - echo "$PROGN error: build already requested" + echo "$PROGN error: build already requested on host ${BUILD_HOST}" exit 1 fi touch "${BUILD_WANTED}" - echo "$PROGN: build of project ${PROJECT} requested on build host ${BUILD_HOST}" + echo "$PROGN: build of project ${PROJECT} requested on ${BUILD_HOST}" else BHOSTS=`ls -1 "${BUILDMAN_BASE}/projects/${PROJECT}/hosts"` for BUILD_HOST in ${BHOSTS} @@ -298,15 +298,15 @@ case $ACTION in if [ ! -d "${BUILD_BASE}" ] then echo "$PROGN error: build host ${BUILD_HOST} not configured" - exit 1 + continue fi BUILD_WANTED="${PROJECT_BASE}/hosts/${BUILD_HOST}/build-wanted" if [ -f "${BUILD_WANTED}" ] then - echo "$PROGN error: build already requested" - exit 1 + echo "$PROGN error: build already requested on ${BUILD_HOST}" + continue fi touch "${BUILD_WANTED}" > /dev/null 2>&1