Skip to content

Commit

Permalink
Fix missing newline in clone cmd (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
felicianotech committed Jun 19, 2023
1 parent b8c9f6c commit 243fc3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arc/cmd/clone.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var (
return err
}

fmt.Printf("Cloned successfully to %s/n", filepath+"/"+repo.Name)
fmt.Printf("Cloned successfully to %s\n", filepath+"/"+repo.Name)

return nil
},
Expand Down

0 comments on commit 243fc3a

Please sign in to comment.