summaryrefslogtreecommitdiffstats
path: root/pkg/gui/reset_menu_panel.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-09-29 19:10:57 +1000
committerJesse Duffield <jessedduffield@gmail.com>2020-09-29 20:48:49 +1000
commit1759ddf2470389d8de7ccedad24caf66c3cdb7d5 (patch)
tree728215e1a6a2e60580ac905b1709f67a38f1814c /pkg/gui/reset_menu_panel.go
parentf9643448a4ba186fb56d408a5ee8a21193986cd6 (diff)
move OS commands into their own package
Diffstat (limited to 'pkg/gui/reset_menu_panel.go')
-rw-r--r--pkg/gui/reset_menu_panel.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/gui/reset_menu_panel.go b/pkg/gui/reset_menu_panel.go
index e75c20aad..26b3cb427 100644
--- a/pkg/gui/reset_menu_panel.go
+++ b/pkg/gui/reset_menu_panel.go
@@ -4,10 +4,10 @@ import (
"fmt"
"github.com/fatih/color"
- "github.com/jesseduffield/lazygit/pkg/commands"
+ "github.com/jesseduffield/lazygit/pkg/commands/oscommands"
)
-func (gui *Gui) resetToRef(ref string, strength string, options commands.RunCommandOptions) error {
+func (gui *Gui) resetToRef(ref string, strength string, options oscommands.RunCommandOptions) error {
if err := gui.GitCommand.ResetToCommit(ref, strength, options); err != nil {
return gui.surfaceError(err)
}
@@ -41,7 +41,7 @@ func (gui *Gui) createResetMenu(ref string) error {
),
},
onPress: func() error {
- return gui.resetToRef(ref, strength, commands.RunCommandOptions{})
+ return gui.resetToRef(ref, strength, oscommands.RunCommandOptions{})
},
}
}