Explorar el Código

Use ssh user specified in the config for Git auth

Brendan Abolivier hace 7 años
padre
commit
175f05e91f
Firmado por: Brendan Abolivier <contact@brendanabolivier.com> ID clave GPG: 8EF1500759F70623
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/git/git.go

+ 1
- 1
src/git/git.go Ver fichero

59
 		return nil, err
59
 		return nil, err
60
 	}
60
 	}
61
 
61
 
62
-	return &gitssh.PublicKeys{User: "git", Signer: signer}, nil
62
+	return &gitssh.PublicKeys{User: user, Signer: signer}, nil
63
 }
63
 }
64
 
64
 
65
 // clone clones a Git repository into a given path, using a given auth.
65
 // clone clones a Git repository into a given path, using a given auth.