We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78236b6 commit b2d18b0Copy full SHA for b2d18b0
automation-tools/utils.sh
@@ -562,7 +562,9 @@ write_components_version() {
562
563
# Create or overwrite the components_version.md file
564
local output_file="components_version.md"
565
- echo "# Components Version Summary" > "$output_file"
+ if [[ ! -f "$output_file" ]]; then
566
+ echo "# Components Version Summary" > "$output_file"
567
+ fi
568
echo "" >> "$output_file"
569
570
# Loop through all */*/artifacts/version files
0 commit comments