923989d1d7
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.
8 lines
96 B
Go
8 lines
96 B
Go
//go:build snap
|
|
// +build snap
|
|
|
|
package buildinfo
|
|
|
|
func init() {
|
|
Tags = append(Tags, "snap")
|
|
}
|