env and config command adjustments

This commit is contained in:
luke-hagar-sp
2023-02-23 13:03:57 -06:00
parent 958bc8dbbd
commit d4cf18c1fb
17 changed files with 87 additions and 19 deletions

View File

@@ -24,9 +24,13 @@ func newDeleteCmd() *cobra.Command {
Example: "sail transform d 03d5187b-ab96-402c-b5a1-40b74285d77a",
Aliases: []string{"d"},
RunE: func(cmd *cobra.Command, args []string) error {
var id []string
err := config.InitConfig()
if err != nil {
return err
}
if len(args) < 1 {
transforms, err := transform.GetTransforms()
if err != nil {