Merge pull request #10266 from hashicorp/command_flags
Move flag packages from helper to command
This commit is contained in:
commit
8350ade7ef
|
@ -4,9 +4,9 @@ import (
|
|||
"flag"
|
||||
"strings"
|
||||
|
||||
"github.com/hashicorp/packer/helper/enumflag"
|
||||
kvflag "github.com/hashicorp/packer/helper/flag-kv"
|
||||
sliceflag "github.com/hashicorp/packer/helper/flag-slice"
|
||||
"github.com/hashicorp/packer/command/enumflag"
|
||||
kvflag "github.com/hashicorp/packer/command/flag-kv"
|
||||
sliceflag "github.com/hashicorp/packer/command/flag-slice"
|
||||
)
|
||||
|
||||
//go:generate enumer -type configType -trimprefix ConfigType -transform snake
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"io"
|
||||
"os"
|
||||
|
||||
kvflag "github.com/hashicorp/packer/helper/flag-kv"
|
||||
kvflag "github.com/hashicorp/packer/command/flag-kv"
|
||||
"github.com/hashicorp/packer/helper/wrappedstreams"
|
||||
"github.com/hashicorp/packer/packer"
|
||||
"github.com/hashicorp/packer/packer-plugin-sdk/template"
|
||||
|
|
Loading…
Reference in New Issue