#!/usr/bin/env bash
set -euo pipefail

# Thin wrapper. Run with --help to see full usage:
#   ./install-emacs.sh --help

SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
PYTHON_BIN="${PYTHON_BIN:-python3}"
exec "${PYTHON_BIN}" "${SCRIPT_DIR}/install-emacs.py" "$@"
