#!/bin/sh if [ -z "${1}" ]; then echo "${0} " >&2 exit 1 fi BUILD_SCRIPT_NAME="${1}" SABAYON_MOLECULE_HOME="${SABAYON_MOLECULE_HOME:-/sabayon}" . "${SABAYON_MOLECULE_HOME}/scripts/iso_build.include" # Pull new data from Git ( flock --timeout 7200 -x 9 if [ "${?}" != "0" ]; then echo "[git pull] cannot acquire lock, stale process holding it?" >&2 exit 1 fi cd /sabayon && git pull --quiet ) 9> "${ISO_BUILD_LOCK}" # Execute build ( flock --timeout 7200 -x 9 if [ "${?}" != "0" ]; then echo "[build] cannot acquire lock, stale process holding it?" >&2 exit 1 fi "${SABAYON_MOLECULE_HOME}/scripts/${BUILD_SCRIPT_NAME}" ) 9> "${ISO_BUILD_LOCK}" exit ${?}