ncdu: disable on plan9 and solaris as termbox isn't supported there

s3-about
Nick Craig-Wood 2017-06-15 20:10:54 +01:00
parent c34f11a92f
commit 97364fd0b6
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
// Package ncdu implements a text based user interface for exploring a remote
//+build !plan9,!solaris
package ncdu
import (

View 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