mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-08 22:31:04 +00:00
lib/upgrade: Let Mac load .zip archives (#6230)
There is no need to do this switch based on the current OS, instead do it based on what the archive actually appears to be. (Tested; works.)
This commit is contained in:
parent
de64ffddab
commit
a963bc8b86
@ -223,8 +223,8 @@ func readRelease(archiveName, dir, url string) (string, error) {
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
|
||||
switch runtime.GOOS {
|
||||
case "windows":
|
||||
switch path.Ext(archiveName) {
|
||||
case ".zip":
|
||||
return readZip(archiveName, dir, io.LimitReader(resp.Body, maxArchiveSize))
|
||||
default:
|
||||
return readTarGz(archiveName, dir, io.LimitReader(resp.Body, maxArchiveSize))
|
||||
|
Loading…
Reference in New Issue
Block a user