mirror of
https://github.com/pocketbase/pocketbase.git
synced 2024-11-21 13:35:49 +02:00
updated ghupdate to prevent downloading unnecessary v0.23+ since it contains breaking changes
This commit is contained in:
parent
3786e0816d
commit
e18ea88113
@ -164,6 +164,11 @@ func (p *plugin) update(withBackup bool) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
if compareVersions(strings.TrimPrefix(latest.Tag, "v"), "0.23.0") <= 0 {
|
||||
color.Green("%s contains breaking changes and cannot be updated directly from v0.22.x. Please check the releases CHANGELOG for more details.", latest.Tag)
|
||||
return nil
|
||||
}
|
||||
|
||||
suffix := archiveSuffix(runtime.GOOS, runtime.GOARCH)
|
||||
if suffix == "" {
|
||||
return errors.New("unsupported platform")
|
||||
|
Loading…
Reference in New Issue
Block a user