mirror of https://github.com/rclone/rclone.git
ncdu: disable on plan9 and solaris as termbox isn't supported there
This commit is contained in:
parent
c34f11a92f
commit
97364fd0b6
|
@ -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 (
|
||||||
|
|
|
@ -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 New Issue