ncdu: disable on plan9 and solaris as termbox isn't supported there
This commit is contained in:
parent
c34f11a92f
commit
97364fd0b6
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
// Package ncdu implements a text based user interface for exploring a remote
|
||||||
|
|
||||||
|
//+build !plan9,!solaris
|
||||||
|
|
||||||
package ncdu
|
package ncdu
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
6
cmd/ncdu/ncdu_unsupported.go
Normal file
6
cmd/ncdu/ncdu_unsupported.go
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
// Build for ncdu for unsupported platforms to stop go complaining
|
||||||
|
// about "no buildable Go source files "
|
||||||
|
|
||||||
|
// +build plan9 solaris
|
||||||
|
|
||||||
|
package ncdu
|
Loading…
Reference in a new issue