Skip to content

Commit

Permalink
feat : fmt & path option argument
Browse files Browse the repository at this point in the history
  • Loading branch information
seipan committed May 10, 2024
1 parent 11e7ab7 commit 5b8d157
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion cmd/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ var pushCmd = &cobra.Command{
if err != nil {
return err
}
err = api.SendTarToServer(publishList, envList)
err = api.SendTarToServer(host, publishList, envList)
if err != nil {
return err
}
Expand Down
5 changes: 0 additions & 5 deletions cmd/root.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/*
Copyright © 2024 NAME HERE <EMAIL ADDRESS>
*/
package cmd

Expand All @@ -10,8 +9,6 @@ import (
"github.com/spf13/cobra"
)



// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "ketos",
Expand Down Expand Up @@ -47,5 +44,3 @@ func init() {
// when this action is called directly.
rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}


0 comments on commit 5b8d157

Please sign in to comment.