tests/help-completions: fix for macOS awk

This commit is contained in:
Johannes Altmanninger
2025-11-10 08:32:47 +01:00
parent 8cc25fe772
commit e7d740785d

View File

@@ -6,7 +6,7 @@ status help-sections | grep -v ^cmds/ >expected
__fish_data_with_file completions/help.fish cat |
awk '
/(\s)case(\s)/ && $2 != "'\''cmds/*'\''" {
/ case / && $2 != "'\''cmds/*'\''" {
sub(/^introduction/, "index", $2);
print $2
}