#!/bin/bash

# Always unpack somewhere obvious
cd

# If supportconfig-tmux fails, make sure the error is visible.
if ! supportconfig-tmux "$@"; then
    cat <<EOF >&2

supportconfig-tmux $* failed.
Press Enter to close this window ...
EOF
    read
fi
