mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
6fa74340a0
Implements self-update command Fixes #548 Fixes #5076
12 lines
168 B
Go
12 lines
168 B
Go
// +build !windows,!plan9,!js
|
|
|
|
package selfupdate
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func writable(path string) bool {
|
|
return unix.Access(path, unix.W_OK) == nil
|
|
}
|