mirror of https://github.com/docker/compose.git
Add missing f shorthand for version command
This commit is contained in:
parent
4fb039164d
commit
d97f9d68fd
|
@ -38,7 +38,7 @@ func VersionCommand(version string) *cobra.Command {
|
|||
}
|
||||
// define flags for backward compatibility with com.docker.cli
|
||||
flags := cmd.Flags()
|
||||
flags.String("format", "", "Format the output using the given Go template")
|
||||
flags.StringP("format", "f", "", "Format the output using the given Go template")
|
||||
flags.String("kubeconfig", "", "Kubernetes config file")
|
||||
mobyflags.AddMobyFlagsForRetrocompatibility(flags)
|
||||
|
||||
|
|
|
@ -239,6 +239,11 @@ func (s *E2eSuite) TestDisplaysAdditionalLineInDockerVersion() {
|
|||
Expect(output).To(ContainSubstring("Azure integration"))
|
||||
}
|
||||
|
||||
func (s *E2eSuite) TestAllowsFormatFlagInVersion() {
|
||||
s.NewDockerCommand("version", "-f", "{{ json . }}").ExecOrDie()
|
||||
s.NewDockerCommand("version", "--format", "{{ json . }}").ExecOrDie()
|
||||
}
|
||||
|
||||
func (s *E2eSuite) TestMockBackend() {
|
||||
It("creates a new test context to hardcoded example backend", func() {
|
||||
s.NewDockerCommand("context", "create", "example", "test-example").ExecOrDie()
|
||||
|
|
Loading…
Reference in New Issue