Files
RetroDebian/bases/retrodebian/entry.sh
2026-04-02 23:53:26 +02:00

15 lines
246 B
Bash

#!/bin/sh
set -eu
PHASE=${1:-}
[ -n "$PHASE" ] || { echo "Usage: entry.sh <phase>" >&2; exit 2; }
case "$PHASE" in
pre-feature|post-feature)
;;
*)
echo "Unsupported base phase: $PHASE" >&2
exit 2
;;
esac