mirror of https://github.com/docker/cli.git
Add String method so quieted output displays properly
Fixes #1089 Signed-off-by: Zachary Romero <zacromero3@gmail.com>
This commit is contained in:
parent
824a0b4db9
commit
b6cf6d87ae
|
@ -122,6 +122,10 @@ func (bw *bufferedWriter) flushBuffer() {
|
|||
bw.mu.Unlock()
|
||||
}
|
||||
|
||||
func (bw *bufferedWriter) String() string {
|
||||
return fmt.Sprintf("%s", bw.Writer)
|
||||
}
|
||||
|
||||
func getBuildSharedKey(dir string) (string, error) {
|
||||
// build session is hash of build dir with node based randomness
|
||||
s := sha256.Sum256([]byte(fmt.Sprintf("%s:%s", tryNodeIdentifier(), dir)))
|
||||
|
|
Loading…
Reference in New Issue