Skip to content

Commit

Permalink
fix: log on initial pull
Browse files Browse the repository at this point in the history
  • Loading branch information
seriouspoop committed Aug 12, 2024
1 parent 517f065 commit c49cd0a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion svc/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ func (s *Svc) Pull(initial bool) error {
return err
}
if initial {
_, err = s.bash.PullBranch(remote.Name, pullBranch, true)
output, err := s.bash.PullBranch(remote.Name, pullBranch, true)
fmt.Println(output)
return err
}
if s.cfg == nil {
Expand Down

0 comments on commit c49cd0a

Please sign in to comment.