1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-23 00:39:13 +02:00
This commit is contained in:
Jesse Duffield Duffield
2019-02-24 17:59:47 +11:00
parent 19a3ac603d
commit 23c51ba708
3 changed files with 6 additions and 6 deletions

@ -123,7 +123,7 @@ func (c *CommitListBuilder) getRebasingCommits() ([]*commands.Commit, error) {
return commits, nil
}
splitLine := strings.Split(line, " ")
commits = append([]*commands.Commit{&commands.Commit{
commits = append([]*commands.Commit{{
Sha: splitLine[1][0:7],
Name: strings.Join(splitLine[2:], " "),
Status: "rebasing",