mirror of
https://github.com/spf13/cobra
synced 2024-11-24 14:47:12 +00:00
Always include the os package import when generating the root command (#1557)
Signed-off-by: John McBride <jmcbride@vmware.com>
This commit is contained in:
parent
01e05b8ea1
commit
19c9c74384
1 changed files with 2 additions and 2 deletions
|
@ -37,9 +37,9 @@ package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
{{- if .Viper }}
|
{{- if .Viper }}
|
||||||
"fmt"
|
"fmt"{{ end }}
|
||||||
"os"
|
"os"
|
||||||
{{ end }}
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
{{- if .Viper }}
|
{{- if .Viper }}
|
||||||
"github.com/spf13/viper"{{ end }}
|
"github.com/spf13/viper"{{ end }}
|
||||||
|
|
Loading…
Reference in a new issue