Browse Source

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

for-closed-social
Antoine GIRARD 5 years ago
committed by Lunny Xiao
parent
commit
273f1997ff
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/setting/setting.go

+ 1
- 1
modules/setting/setting.go View File

@ -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
}

Loading…
Cancel
Save