Skip to content

Commit

Permalink
support plan9
Browse files Browse the repository at this point in the history
  • Loading branch information
iikira committed May 30, 2018
1 parent e7de55b commit ac81bbe
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions internal/pcsupdate/check_plan9.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package pcsupdate

func checkWritable() bool {
return true
}
2 changes: 1 addition & 1 deletion internal/pcsupdate/check_unix.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build !windows
// +build !windows,!plan9

package pcsupdate

Expand Down
2 changes: 2 additions & 0 deletions internal/pcsupdate/check_windows.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package pcsupdate

// TODO: check writable

func checkWritable() bool {
return true
}

0 comments on commit ac81bbe

Please sign in to comment.