#!/bin/bash
set -e

if [ -z "$1" ]; then
    echo "PASS"
    exit 0
fi

# Also allow calling the shell directly with options
/bin/bash --norc "$@"
