From 56ae722ec7cbc16515e479599e719e81da069dc9 Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Sun, 31 Dec 2023 17:22:34 +0200 Subject: [PATCH] fix(script): typo Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> --- .github/workflows/charts-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/charts-release.yaml b/.github/workflows/charts-release.yaml index 5b8b0c40efa..97424e32bf0 100644 --- a/.github/workflows/charts-release.yaml +++ b/.github/workflows/charts-release.yaml @@ -241,7 +241,7 @@ jobs: filename=$(basename "${file}") echo "Found doc file: ${file}" test_title=$(head -n 1 "${file}" | sed 's/# //') - if [-n ${test_title} ]; then + if [ -n ${test_title} ]; then echo "Doc title should use front matter and not # for title, for example" echo "---" echo "title: ${test_title}"