diff --git a/.github/scripts/frontmatter.sh b/.github/scripts/frontmatter.sh index 00d9925e674..c64adb39a5f 100755 --- a/.github/scripts/frontmatter.sh +++ b/.github/scripts/frontmatter.sh @@ -27,10 +27,7 @@ if ! head -n 1 "$file_path" | grep -q "---"; then echo "Front matter (start) not found, adding it" # Dont trace content, as its usually too large [ "$DEBUG" == "true" ] && set +x - content=$(cat "$file_path") - echo -e "---\n" >"$file_path" - echo -e "---\n" >>"$file_path" - echo "$content" >>"$file_path" + (echo -e "---\n---\n"; cat "$file_path") >"$file_path.tmp" && mv "$file_path.tmp" "$file_path" [ "$DEBUG" == "true" ] && set -x fi diff --git a/charts/incubator/flashpaper/Chart.yaml b/charts/incubator/flashpaper/Chart.yaml index 8fdeb7a5bf8..92b2f0ad559 100644 --- a/charts/incubator/flashpaper/Chart.yaml +++ b/charts/incubator/flashpaper/Chart.yaml @@ -39,4 +39,4 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/incubator/flashpaper - https://ghcr.io/andrewpaglusch/flashpaper type: application -version: 2.0.7 +version: 2.0.8