Skip to content

Commit ac81bbe

Browse files
committed
support plan9
1 parent e7de55b commit ac81bbe

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

internal/pcsupdate/check_plan9.go

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package pcsupdate
2+
3+
func checkWritable() bool {
4+
return true
5+
}

internal/pcsupdate/check_unix.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// +build !windows
1+
// +build !windows,!plan9
22

33
package pcsupdate
44

internal/pcsupdate/check_windows.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package pcsupdate
22

3+
// TODO: check writable
4+
35
func checkWritable() bool {
46
return true
57
}

0 commit comments

Comments
 (0)