diff options
| author | Jeff Carr <[email protected]> | 2025-02-14 18:40:55 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-14 18:40:55 -0600 |
| commit | 10f53c5f178e2303b7d3b011c1f9afbdc8c1c63e (patch) | |
| tree | 01c42eca3d4ab53564afc620cd0ac03c52722561 /windowPatchset.go | |
| parent | 7d4bb336b3cecec23e611ef420a7052f955200ad (diff) | |
general work on 'Build()'
Diffstat (limited to 'windowPatchset.go')
| -rw-r--r-- | windowPatchset.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windowPatchset.go b/windowPatchset.go index c24ec57..2ac5138 100644 --- a/windowPatchset.go +++ b/windowPatchset.go @@ -208,7 +208,7 @@ func (r *patchWindow) addPatchset(grid *gui.Node, pset *forgepb.Patchset) { func applyPatch(repo *gitpb.Repo, filename string) error { cmd := []string{"git", "am", filename} - _, err := repo.RunVerbose(cmd) + err := repo.RunVerbose(cmd) return err } |
