Fossil SCM
For the "fossil ui REMOTE" command, omit the -- in the ssh command that separates local ssh options from the remote command, as it does not appear to be needed, and does not work with plink.
Commit
d6b573f72dc569296ec004ea1c02ebe016beb6a62cae09bda19d8bb08599f08c
Parent
23b84b33cdb70a1…
1 file changed
+1
-1
+1
-1
| --- src/main.c | ||
| +++ src/main.c | ||
| @@ -3057,11 +3057,11 @@ | ||
| 3057 | 3057 | blob_init(&ssh, 0, 0); |
| 3058 | 3058 | transport_ssh_command(&ssh); |
| 3059 | 3059 | db_close_config(); |
| 3060 | 3060 | if( zFossilCmd==0 ) zFossilCmd = "fossil"; |
| 3061 | 3061 | blob_appendf(&ssh, |
| 3062 | - " -t -L127.0.0.1:%d:127.0.0.1:%d -- %!$" | |
| 3062 | + " -t -L127.0.0.1:%d:127.0.0.1:%d %!$" | |
| 3063 | 3063 | " %$ ui --nobrowser --localauth --port %d", |
| 3064 | 3064 | iPort, iPort, zRemote, zFossilCmd, iPort); |
| 3065 | 3065 | if( zNotFound ) blob_appendf(&ssh, " --notfound %!$", zNotFound); |
| 3066 | 3066 | if( zFileGlob ) blob_appendf(&ssh, " --files-urlenc %T", zFileGlob); |
| 3067 | 3067 | if( g.zCkoutAlias ) blob_appendf(&ssh, " --ckout-alias %!$",g.zCkoutAlias); |
| 3068 | 3068 |
| --- src/main.c | |
| +++ src/main.c | |
| @@ -3057,11 +3057,11 @@ | |
| 3057 | blob_init(&ssh, 0, 0); |
| 3058 | transport_ssh_command(&ssh); |
| 3059 | db_close_config(); |
| 3060 | if( zFossilCmd==0 ) zFossilCmd = "fossil"; |
| 3061 | blob_appendf(&ssh, |
| 3062 | " -t -L127.0.0.1:%d:127.0.0.1:%d -- %!$" |
| 3063 | " %$ ui --nobrowser --localauth --port %d", |
| 3064 | iPort, iPort, zRemote, zFossilCmd, iPort); |
| 3065 | if( zNotFound ) blob_appendf(&ssh, " --notfound %!$", zNotFound); |
| 3066 | if( zFileGlob ) blob_appendf(&ssh, " --files-urlenc %T", zFileGlob); |
| 3067 | if( g.zCkoutAlias ) blob_appendf(&ssh, " --ckout-alias %!$",g.zCkoutAlias); |
| 3068 |
| --- src/main.c | |
| +++ src/main.c | |
| @@ -3057,11 +3057,11 @@ | |
| 3057 | blob_init(&ssh, 0, 0); |
| 3058 | transport_ssh_command(&ssh); |
| 3059 | db_close_config(); |
| 3060 | if( zFossilCmd==0 ) zFossilCmd = "fossil"; |
| 3061 | blob_appendf(&ssh, |
| 3062 | " -t -L127.0.0.1:%d:127.0.0.1:%d %!$" |
| 3063 | " %$ ui --nobrowser --localauth --port %d", |
| 3064 | iPort, iPort, zRemote, zFossilCmd, iPort); |
| 3065 | if( zNotFound ) blob_appendf(&ssh, " --notfound %!$", zNotFound); |
| 3066 | if( zFileGlob ) blob_appendf(&ssh, " --files-urlenc %T", zFileGlob); |
| 3067 | if( g.zCkoutAlias ) blob_appendf(&ssh, " --ckout-alias %!$",g.zCkoutAlias); |
| 3068 |