From 5eadeb67b0446caf4fbac03282ed031157474eae Mon Sep 17 00:00:00 2001 From: Michael Sloan Date: Mon, 17 Feb 2025 12:59:06 -0700 Subject: [PATCH] Add newlines before some headings in licenses.md (#25035) Release Notes: - N/A --- script/generate-licenses | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/generate-licenses b/script/generate-licenses index 1be79e2e9b..51749a91e2 100755 --- a/script/generate-licenses +++ b/script/generate-licenses @@ -11,10 +11,10 @@ TEMPLATE_FILE="script/licenses/template.md.hbs" echo -e "# ###### THEME LICENSES ######\n" >> $OUTPUT_FILE cat assets/themes/LICENSES >> $OUTPUT_FILE -echo -e "# ###### ICON LICENSES ######\n" >> $OUTPUT_FILE +echo -e "\n# ###### ICON LICENSES ######\n" >> $OUTPUT_FILE cat assets/icons/LICENSES >> $OUTPUT_FILE -echo -e "# ###### CODE LICENSES ######\n" >> $OUTPUT_FILE +echo -e "\n# ###### CODE LICENSES ######\n" >> $OUTPUT_FILE if ! cargo install --list | grep "cargo-about v$CARGO_ABOUT_VERSION" > /dev/null; then echo "Installing cargo-about@$CARGO_ABOUT_VERSION..."