Skip to content

Commit

Permalink
added new line
Browse files Browse the repository at this point in the history
  • Loading branch information
warrensbox committed Mar 3, 2020
1 parent 83ef2aa commit 2fbc707
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func main() {
}

} else if _, err := os.Stat(rcfile); err == nil && len(args) == 0 { //if there is a .tfswitchrc file, and no commmand line arguments
fmt.Printf("Reading required terraform version %s ", rcFilename)
fmt.Printf("Reading required terraform version %s \n", rcFilename)

fileContents, err := ioutil.ReadFile(rcfile)
if err != nil {
Expand All @@ -140,7 +140,7 @@ func main() {
os.Exit(1)
}
} else if _, err := os.Stat(tfvfile); err == nil && len(args) == 0 { //if there is a .terraform-version file, and no command line arguments
fmt.Printf("Reading required terraform version %s ", tfvFilename)
fmt.Printf("Reading required terraform version %s \n", tfvFilename)

fileContents, err := ioutil.ReadFile(tfvfile)
if err != nil {
Expand Down

0 comments on commit 2fbc707

Please sign in to comment.