Skip to content

Commit 243fc3a

Browse files
Fix missing newline in clone cmd (#72)
1 parent b8c9f6c commit 243fc3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arc/cmd/clone.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var (
4040
return err
4141
}
4242

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

4545
return nil
4646
},

0 commit comments

Comments
 (0)