mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 00:43:49 +01:00
36add0afbf
The https://github.com/nsf/termbox-go library is no longer maintained so this change replaces it with the maintained github.com/gdamore/tcell library which has a termbox backwards compatibility layer. There are a few minor changes from the termbox library: - Using Clear with fg bg ColorDefault resulted in a white background for some reason. - Clear with fg ColorWhite bg ColorBlack was used instead. - tcell's termbox wrapper doesn't support ColorLightYellow. - ColorYellow + 8 was used instead.
8 lines
165 B
Go
8 lines
165 B
Go
// Build for ncdu for unsupported platforms to stop go complaining
|
|
// about "no buildable Go source files "
|
|
|
|
//go:build plan9 || js
|
|
// +build plan9 js
|
|
|
|
package ncdu
|