The missing_cmd grep pipeline in the install error handler runs under set -o pipefail. When grep finds no match (exit 1), the entire pipeline fails and triggers the ERR trap recursively, crashing the recovery menu. Add || true to suppress this.
The missing_cmd grep pipeline in the install error handler runs under set -o pipefail. When grep finds no match (exit 1), the entire pipeline fails and triggers the ERR trap recursively, crashing the recovery menu. Add || true to suppress this.