fix: grant Control scoped access to mesh state #57

Merged
ochenstarik-ui merged 8 commits from codex/mesh-state-permissions into main 2026-08-17 19:12:20 +00:00
Showing only changes of commit c8149e3c16 - Show all commits

View file

@ -19,8 +19,8 @@ extract_function() {
local name="$1"
awk -v name="$name" '
$0 == name "() {" { capture=1 }
capture && $0 != name "() {" && /^[A-Za-z_][A-Za-z0-9_]*\(\) \{$/ { exit }
capture { print }
capture && $0 == "}" { exit }
' "$bootstrap"
}