summaryrefslogtreecommitdiffstats
path: root/pkg/commands
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-05-23 19:58:09 +1000
committerJesse Duffield <jessedduffield@gmail.com>2023-05-23 20:23:08 +1000
commitfb0931e1a1d21fb07cf924cdfea7213810b10d9c (patch)
tree5dcd202fb89717b88002b4092fca5fe296f31069 /pkg/commands
parent63dc07fdedec58ae5836a601d9c8839d0481eda6 (diff)
Fix discard logic
Missed a spot a couple PR's ago. We had an integration test which caught this but which was skipped due to index.lock file issues. The test was also broken for other reasons due to it not having been running for a while, so I've fixed that up too.
Diffstat (limited to 'pkg/commands')
-rw-r--r--pkg/commands/git_commands/working_tree.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/git_commands/working_tree.go b/pkg/commands/git_commands/working_tree.go
index 6269ce21a..9a167de36 100644
--- a/pkg/commands/git_commands/working_tree.go
+++ b/pkg/commands/git_commands/working_tree.go
@@ -149,7 +149,7 @@ func (self *WorkingTreeCommands) DiscardAllFileChanges(file *models.File) error
if file.ShortStatus == "DU" {
return self.cmd.New(
- NewGitCmd("rm").Arg("rm", "--", file.Name).ToArgv(),
+ NewGitCmd("rm").Arg("--", file.Name).ToArgv(),
).Run()
}