From dedb086148f6e746e35fe6856293a6de759ded6b Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Fri, 5 Apr 2024 10:57:31 -0400 Subject: [PATCH] ci: Make syntax highlighting a bit happier At least neovim's YAML parser doesn't like the ' ' without a leading space. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d7597aaef..382ec7493 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -531,7 +531,7 @@ doccheck: stage: analysis script: # Check that each pipewire module has a \subpage entry - - git grep -h -o -e "\\\page page_module_\w\+" | cut -f2 -d' ' > pipewire_module_pages + - git grep -h -o -e "\\\page page_module_\w\+" | cut -f2 -d ' ' > pipewire_module_pages - cat pipewire_module_pages - | for page in $(cat pipewire_module_pages); do