fix(mac): reject unknown restart options

This commit is contained in:
Vincent Koc
2026-06-20 21:33:48 +02:00
parent a49f3f9362
commit 577e5a4692
2 changed files with 49 additions and 1 deletions

View File

@@ -116,7 +116,8 @@ for arg in "$@"; do
log "Default behavior: Auto-detect signing keys, fallback to --no-sign if none found"
exit 0
;;
*) ;;
--) ;;
*) fail "Unknown restart option: ${arg}" ;;
esac
done