remove quotes since we don't spawn shell

This commit is contained in:
SteVen Batten
2020-12-14 22:03:51 +00:00
committed by GitHub
parent 79a42e7221
commit f76b1c25e7

View File

@@ -1694,7 +1694,7 @@ export class Repository {
args.push(name);
}
args.splice(0, 0, '-c', `http.userAgent="${this.git.userAgent}"`);
args.splice(0, 0, '-c', `http.userAgent=${this.git.userAgent}`);
try {
await this.run(args);