Skip to content

Commit 80ea73e

Browse files
committed
fix(git.cmd): Fix --pathspec from file
1 parent 8e616b9 commit 80ea73e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libvcs/cmd/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1157,7 +1157,7 @@ def reset(
11571157
if refresh is True:
11581158
local_flags.append("--refresh")
11591159
if pathspec_from_file is not None:
1160-
local_flags.append(f"--pathspec_from_file {pathspec_from_file}")
1160+
local_flags.append(f"--pathspec_from_file={pathspec_from_file}")
11611161

11621162
# HEAD to commit form
11631163
if soft is True:

0 commit comments

Comments
 (0)