mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
13 lines
195 B
Go
13 lines
195 B
Go
//go:build noselfupdate
|
|
// +build noselfupdate
|
|
|
|
package selfupdate
|
|
|
|
import (
|
|
"github.com/rclone/rclone/lib/buildinfo"
|
|
)
|
|
|
|
func init() {
|
|
buildinfo.Tags = append(buildinfo.Tags, "noselfupdate")
|
|
}
|