Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Andrii Kostenko <[email protected]>
  • Loading branch information
gugu committed Jan 19, 2024
1 parent ce1fe93 commit 43a70af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/git/writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (m *nativeGitClient) Add(path string) error {

// SymRefToBranch retrieves the branch name a symbolic ref points to
func (m *nativeGitClient) SymRefToBranch(symRef string) (string, error) {
output, err := m.runCmd("symbolic-ref", "refs/remotes/origin/" + symRef)
output, err := m.runCmd("symbolic-ref", "refs/remotes/origin/"+symRef)
if err != nil {
return "", fmt.Errorf("could not resolve symbolic ref '%s': %v", symRef, err)
}
Expand Down

0 comments on commit 43a70af

Please sign in to comment.