Преглед изворни кода

Adds -- before filename for better git handling

main
Eric Amodio пре 6 година
родитељ
комит
bf697d86ce
1 измењених фајлова са 2 додато и 2 уклоњено
  1. +2
    -2
      src/git/git.ts

+ 2
- 2
src/git/git.ts Прегледај датотеку

@ -466,9 +466,8 @@ export class Git {
if (options.ref2) {
params.push(options.ref2);
}
params.push('--', fileName);
return git<string>({ cwd: repoPath }, ...params);
return git<string>({ cwd: repoPath }, ...params, '--', fileName);
}
static fetch(repoPath: string, options: { all?: boolean; remote?: string } = {}) {
@ -632,6 +631,7 @@ export class Git {
const data = await git<string>(
{ cwd: repoPath, exceptionHandler: ignoreExceptionsHandler },
...params,
'--',
fileName
);
return data === '' ? undefined : data.trim();

Loading…
Откажи
Сачувај