Quellcode durchsuchen

Adds -- before filename for better git handling

main
Eric Amodio vor 6 Jahren
Ursprung
Commit
bf697d86ce
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +2
    -2
      src/git/git.ts

+ 2
- 2
src/git/git.ts Datei anzeigen

@ -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();

Laden…
Abbrechen
Speichern