mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:15:43 +01:00
Reduce quote usage to bypass bug in GIT_SSH_COMMAND (#7893)
This commit is contained in:
parent
bee1227b2f
commit
de5986ae03
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ func withKeyFile(t *testing.T, keyname string, callback func(string)) {
|
|||
|
||||
//Setup ssh wrapper
|
||||
os.Setenv("GIT_SSH_COMMAND",
|
||||
"ssh -o \"UserKnownHostsFile=/dev/null\" -o \"StrictHostKeyChecking=no\" -o \"IdentitiesOnly=yes\" -i \""+keyFile+"\"")
|
||||
"ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o IdentitiesOnly=yes -i \""+keyFile+"\"")
|
||||
os.Setenv("GIT_SSH_VARIANT", "ssh")
|
||||
|
||||
callback(keyFile)
|
||||
|
|
Loading…
Reference in a new issue