1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-06 00:03:32 +00:00
Files
rclone/cmd/selfupdate/writable_unsupported.go
Ivan Andreev 9e2e2bb5fc build: add build tag noselfupdate
Allow downstream packaging to build rclone without selfupdate command:
$ go build -tags noselfupdate

Fixes #5187
2021-04-06 10:05:54 +01:00

9 lines
113 B
Go

// +build plan9 js
// +build !noselfupdate
package selfupdate
func writable(path string) bool {
return true
}