mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
dd7159060f
In more recent versions of Cobra, `--help` parsing is done before anything else resulting in TestDaemonCommand not actually passing. I'm actually unsure if this test ever passed since it appears that !daemon is not being run as part of the test suite. Signed-off-by: Aleksa Sarai <asarai@suse.de>
29 lines
539 B
Go
29 lines
539 B
Go
// +build !daemon
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func newDaemonCommand() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "daemon",
|
|
Hidden: true,
|
|
Args: cobra.ArbitraryArgs,
|
|
DisableFlagParsing: true,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return runDaemon()
|
|
},
|
|
}
|
|
}
|
|
|
|
func runDaemon() error {
|
|
return fmt.Errorf(
|
|
"`docker daemon` is not supported on %s. Please run `dockerd` directly",
|
|
strings.Title(runtime.GOOS))
|
|
}
|