Merge pull request #10266 from hashicorp/command_flags

Move flag packages from helper to command
pull/10172/head
Megan Marsh 6 years ago committed by GitHub
commit 8350ade7ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save