getlantern / systray

a cross platfrom Go library to place an icon and menu in the notification area
Apache License 2.0
3.28k stars 451 forks source link

Deprecation of 'go get' for installing executables #258

Open DevDengChao opened 1 year ago

DevDengChao commented 1 year ago

Starting in Go 1.17, installing executables with go get is deprecated. go install may be used instead.


There should be some version comparing in https://github.com/getlantern/systray/blob/a47cb5bb227fc0a9a033a3eff3a5387980096ec8/example/icon/make_icon.bat#L18-L22 and https://github.com/getlantern/systray/blob/a47cb5bb227fc0a9a033a3eff3a5387980096ec8/example/icon/make_icon.sh#L8-L15

Otherwise users won't be able to invoke the 2goarray bin to generate an icon.

Reference: