Skip to content

Commit 2ab1936

Browse files
committed
fix: keep splitter if no path specs exist (#929)
1 parent f101061 commit 2ab1936

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.changeset/nice-laws-invite.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'simple-git': patch
3+
---
4+
5+
keep path splitter without path specs

simple-git/src/lib/plugins/suffix-paths.plugin.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,19 @@ export function suffixPathsPlugin(): SimpleGitPlugin<'spawn.args'> {
77
action(data) {
88
const prefix: string[] = [];
99
const suffix: string[] = [];
10+
let suffixFound: boolean = false;
1011

1112
for (let i = 0; i < data.length; i++) {
1213
const param = data[i];
1314

1415
if (isPathSpec(param)) {
16+
suffixFound = true;
1517
suffix.push(...toPaths(param));
1618
continue;
1719
}
1820

1921
if (param === '--') {
22+
suffixFound = true;
2023
suffix.push(
2124
...data
2225
.slice(i + 1)
@@ -28,7 +31,7 @@ export function suffixPathsPlugin(): SimpleGitPlugin<'spawn.args'> {
2831
prefix.push(param);
2932
}
3033

31-
return !suffix.length ? prefix : [...prefix, '--', ...suffix.map(String)];
34+
return suffixFound ? [...prefix, '--', ...suffix.map(String)] : prefix;
3235
},
3336
};
3437
}

simple-git/test/unit/plugin.pathspec.spec.ts

+8
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,12 @@ describe('suffixPathsPlugin', function () {
5353
await closeWithSuccess();
5454
assertExecutedCommands('pull', 'foo', 'bar', '--', 'a', 'b', 'c', 'd');
5555
});
56+
57+
it('keep splitter without path specs', async () => {
58+
git.raw(['a', '--']);
59+
await closeWithSuccess();
60+
61+
assertExecutedCommands('a', '--');
62+
});
63+
5664
});

0 commit comments

Comments
 (0)