From a6b29e3c4bfc0bab28f799f665cf0647f1d84d5c Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 2 Aug 2025 11:23:31 +0200 Subject: [PATCH] action/unknown --- sh/core/code.awk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sh/core/code.awk b/sh/core/code.awk index a94ed93..1603cdd 100644 --- a/sh/core/code.awk +++ b/sh/core/code.awk @@ -249,6 +249,11 @@ if (action == "doc") { unique[extract($0, target)] = "" } +# unknown +} else { + print "unknown action: " action + exit 1 + # ← action }