#!/usr/bin/env bash source /usr/local/bin/enable-scl # Configure bash behavior set -o errexit # exit on failed command set -o nounset # exit on undeclared variables set -o pipefail # exit on any failed command in pipes #set -o xtrace # to debug # Expand arguments as command exec "$@"