Skip to content

Commit

Permalink
Updated action.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Nov 1, 2021
1 parent 4c5fe27 commit 81a8851
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ var rootCmd = &cobra.Command{
var action Action
action.getAction()

fmt.Printf("Name: %s", action.Name)
fmt.Printf("Description: %s", action.Description)
fmt.Printf("Name: %s \n", action.Name)
fmt.Printf("Description: %s\n", action.Description)

inputs := make(map[string]interface{})

Expand All @@ -84,7 +84,7 @@ var rootCmd = &cobra.Command{
cobra.CheckErr(err)
}

fmt.Printf("Inputs: %s", inputs)
fmt.Printf("Inputs: %s\n", inputs)

outputs := make(map[string]interface{})

Expand All @@ -94,7 +94,7 @@ var rootCmd = &cobra.Command{
cobra.CheckErr(err)
}

fmt.Printf("Outputs: %s", outputs)
fmt.Printf("Outputs: %s \n", outputs)

outputFile, err := os.Open(outputFileName)

Expand Down

0 comments on commit 81a8851

Please sign in to comment.