Parcourir la source

Fixes wrong remote connection

main
Eric Amodio il y a 4 ans
Parent
révision
aace53be2d
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/commands/remoteProviders.ts

+ 1
- 1
src/commands/remoteProviders.ts Voir le fichier

@ -42,7 +42,7 @@ export class ConnectRemoteProviderCommand extends Command {
if (args?.repoPath == null || args?.remote == null) return false;
const remotes = await Container.git.getRemotes(args.repoPath);
const remote = remotes.find(r => args.remote);
const remote = remotes.find(r => r.name === args.remote);
if (!remote?.provider?.hasApi()) return false;
const connected = await remote.provider.connect();

Chargement…
Annuler
Enregistrer