Trims url to avoid issues

This commit is contained in:
Eric Amodio 2021-03-19 14:23:30 -04:00
parent 022d823577
commit 1cd067471e

View file

@ -2246,7 +2246,7 @@ export class CommandCenter {
return;
}
await repository.addRemote(name, url);
await repository.addRemote(name, url.trim());
await repository.fetch({ remote: name });
return name;
}