Explorar el Código

setting: don't require same running user for internal SSH (like win platform) (#7215)

tags/v1.9.0-rc1
Antoine GIRARD hace 5 años
padre
commit
273f1997ff
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      modules/setting/setting.go

+ 1
- 1
modules/setting/setting.go Ver fichero

@@ -438,7 +438,7 @@ func forcePathSeparator(path string) {
// This check is ignored under Windows since SSH remote login is not the main
// method to login on Windows.
func IsRunUserMatchCurrentUser(runUser string) (string, bool) {
if IsWindows {
if IsWindows || SSH.StartBuiltinServer {
return "", true
}


Cargando…
Cancelar
Guardar