Remove unecessary type definition

Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me>
This commit is contained in:
Dimitris Karakasilis 2023-09-28 17:32:31 +03:00
parent f2ec19d53d
commit b68b07f278
No known key found for this signature in database
GPG Key ID: 286DCAFD2C97DDE3

View File

@ -52,7 +52,7 @@ func ListReleases(includePrereleases bool) semver.Collection {
}
func Upgrade(
version, source string, force, strictValidations bool, dirs []string, preReleases bool, upgradeRecovery bool) error {
version, source string, force, strictValidations bool, dirs []string, preReleases, upgradeRecovery bool) error {
bus.Manager.Initialize()
upgradeSpec, c, err := generateUpgradeSpec(version, source, force, strictValidations, dirs, preReleases, upgradeRecovery)