rclone/lib/buildinfo/snap.go
hideo aoyama 923989d1d7
build: add snap installation
I ( @boukendesho ) have volunteered to maintain the snap package so
this adds it back into the installation instructions.

It will set a `snap` tag visible in `rclone version` so we know where
it came from for support queries.
2023-08-18 11:57:25 +01:00

9 lines
96 B
Go

//go:build snap
// +build snap
package buildinfo
func init() {
Tags = append(Tags, "snap")
}