mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

Moves the vendor/ directory to cmd/vendor. Vendored binaries are built from cmd/, which is backed by symlinks pointing back to repo root.
12 lines
274 B
Go
12 lines
274 B
Go
// +build appengine
|
|
|
|
package pb
|
|
|
|
import "errors"
|
|
|
|
// terminalWidth returns width of the terminal, which is not supported
|
|
// and should always failed on appengine classic which is a sandboxed PaaS.
|
|
func terminalWidth() (int, error) {
|
|
return 0, errors.New("Not supported")
|
|
}
|