Sha256: 2f4acad7d4a84a991b8db74733a8420658653f6bb2e0c40026e9830da6a7b97c

Contents?: true

Size: 709 Bytes

Versions: 8

Compression:

Stored size: 709 Bytes

Contents

#!/bin/bash
set -eo pipefail

SELFDIR=$(dirname "$0")
SELFDIR=$(cd "$SELFDIR" && pwd)
PASSENGER_ROOT=$(cd "$SELFDIR/../../.." && pwd)
# shellcheck source=lib/functions.sh
source "$SELFDIR/../lib/functions.sh"

if ! "$@"; then
	echo
	echo "-----------------------------"
	echo
	echo "*** An error occurred ***"
	if [[ "$DEBUG_CONSOLE" == 1 ]]; then
		echo "DEBUG_CONSOLE set to 1, so launching a debugging console..."
		echo
		# shellcheck source=../lib/set-container-envvars.sh
		set +e
		source "$PASSENGER_ROOT/dev/ci/lib/set-container-envvars.sh"
		header2 "Launching bash"
		bash -l
	else
		echo "If you want to debug this, run '$CI_COMMAND' with the environment variable DEBUG_CONSOLE=1."
	fi
	exit 1
fi

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
passenger-5.1.12 dev/ci/scripts/debug-console-wrapper.sh
passenger-5.1.11 dev/ci/scripts/debug-console-wrapper.sh
passenger-5.1.10 dev/ci/scripts/debug-console-wrapper.sh
passenger-5.1.9 dev/ci/scripts/debug-console-wrapper.sh
passenger-5.1.8 dev/ci/scripts/debug-console-wrapper.sh
passenger-5.1.7 dev/ci/scripts/debug-console-wrapper.sh
passenger-5.1.6 dev/ci/scripts/debug-console-wrapper.sh
passenger-5.1.5 dev/ci/scripts/debug-console-wrapper.sh