in order to implement sst for windows and macos the structure of osmanager has been changed. Now osmanager has a new field pm, which contains the specific packagemanager for the os. Linux packagemanagers have been implemented as packagemanagers on their own.
8 lines
115 B
Go
8 lines
115 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package packagemanager
|
|
|
|
func platformInfoWin() (*OS, error) {
|
|
return nil, nil
|
|
}
|