Move env command to top level
This commit is contained in:
parent
af9bf6190e
commit
93b3a95f33
@ -1,50 +1,41 @@
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"github.com/Jaculabilis/intake/core"
|
"github.com/Jaculabilis/intake/core"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
var sourceEnvCmd = &cobra.Command{
|
var envCmd = &cobra.Command{
|
||||||
Use: "env",
|
Use: "env",
|
||||||
Short: "Manage source environment variables",
|
Short: "Manage source environment variables",
|
||||||
Long: `Add, edit, list, or delete environment variables.
|
Long: `Add, edit, list, or delete environment variables.
|
||||||
|
|
||||||
When --set is not specified, list the environment for the source.
|
--env KEY=VALUE will add or edit an environment variable to be set in all
|
||||||
|
|
||||||
--set KEY=VALUE will add or edit an environment variable to be set in all
|
|
||||||
action executions.
|
action executions.
|
||||||
|
|
||||||
--set KEY= will delete the environment variable from the source.
|
--env KEY= will delete the environment variable from the source.
|
||||||
`,
|
`,
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
sourceEnv(stringArg(cmd, "source"), stringArrayArg(cmd, "set"))
|
sourceEnv(stringArg(cmd, "source"), stringArrayArg(cmd, "env"))
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
sourceCmd.AddCommand(sourceEnvCmd)
|
rootCmd.AddCommand(envCmd)
|
||||||
|
|
||||||
sourceEnvCmd.Flags().StringP("source", "s", "", "Source to edit")
|
envCmd.Flags().StringP("source", "s", "", "Source to edit")
|
||||||
sourceEnvCmd.MarkFlagRequired("source")
|
envCmd.MarkFlagRequired("source")
|
||||||
|
|
||||||
sourceEnvCmd.Flags().StringArray("set", nil, "Set or modify environment variable")
|
envCmd.Flags().StringArray("env", nil, "Set or modify environment variable")
|
||||||
}
|
}
|
||||||
|
|
||||||
func sourceEnv(source string, env []string) {
|
func sourceEnv(source string, env []string) {
|
||||||
db := openAndMigrateDb()
|
db := openAndMigrateDb()
|
||||||
|
|
||||||
if len(env) == 0 {
|
if len(env) == 0 {
|
||||||
envs, err := core.GetEnvs(db, source)
|
log.Fatal("error: no --env specified")
|
||||||
if err != nil {
|
|
||||||
log.Fatalf("failed to get envs: %v", err)
|
|
||||||
}
|
|
||||||
for _, env := range envs {
|
|
||||||
fmt.Println(env)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := core.SetEnvs(db, source, env); err != nil {
|
if err := core.SetEnvs(db, source, env); err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user