Compare commits

..

1 Commits

Author SHA1 Message Date
6b565fbe1c
feat: --ssh/--force for recipe fetch
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
See toolshed/organising#546
2025-04-22 09:00:29 +02:00

View File

@ -3,7 +3,6 @@ package app
import (
"context"
"fmt"
"strings"
"coopcloud.tech/abra/cli/internal"
"coopcloud.tech/abra/pkg/app"
@ -336,11 +335,6 @@ func getReleaseNotes(
}
if note != "" {
// NOTE(d1): trim any final newline on the end of the note itself before
// we manually handle newlines (for multiple release notes and
// ensuring space between the warning messages)
note = strings.TrimSuffix(note, "\n")
*upgradeReleaseNotes += fmt.Sprintf("%s\n", note)
}
}