mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
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.
9 lines
96 B
Go
9 lines
96 B
Go
//go:build snap
|
|
// +build snap
|
|
|
|
package buildinfo
|
|
|
|
func init() {
|
|
Tags = append(Tags, "snap")
|
|
}
|