diff --git a/modules/ssh/ssh.go b/modules/ssh/ssh.go index bdb584696..1b95e3bc0 100644 --- a/modules/ssh/ssh.go +++ b/modules/ssh/ssh.go @@ -166,7 +166,7 @@ func Listen(host string, port int, ciphers []string) { keyPath := filepath.Join(setting.AppDataPath, "ssh/gogs.rsa") if !com.IsExist(keyPath) { os.MkdirAll(filepath.Dir(keyPath), os.ModePerm) - _, stderr, err := com.ExecCmd("ssh-keygen", "-f", keyPath, "-t", "rsa", "-N", "") + _, stderr, err := com.ExecCmd(setting.SSH.KeygenPath, "-f", keyPath, "-t", "rsa", "-N", "") if err != nil { panic(fmt.Sprintf("Fail to generate private key: %v - %s", err, stderr)) }