Fossil SCM
Make the PATH= argument identical for the patch and the sync commands, just to avoid confusion.
Commit
e82375910b8a0f546d458ff46038d1caf884c4a21a7d2ba3a896209f155a8721
Parent
f80041ebc525398…
1 file changed
+1
-1
+1
-1
| --- src/http_transport.c | ||
| +++ src/http_transport.c | ||
| @@ -143,11 +143,11 @@ | ||
| 143 | 143 | && (pUrlData->flags & URL_SSH_PATH)!=0 |
| 144 | 144 | ){ |
| 145 | 145 | blob_append_escaped_arg(&zCmd, |
| 146 | 146 | /* tag-20240206-b: |
| 147 | 147 | ** vvvv--- keep in sync with PATH= at tag-20240206-a */ |
| 148 | - "PATH=bin:/usr/local/bin:/opt/homebrew/bin:$PATH", 1); | |
| 148 | + "PATH=$HOME/bin:/usr/local/bin:/opt/homebrew/bin:$PATH", 1); | |
| 149 | 149 | } |
| 150 | 150 | blob_append_escaped_arg(&zCmd, pUrlData->fossil, 1); |
| 151 | 151 | blob_append(&zCmd, " test-http", 10); |
| 152 | 152 | if( pUrlData->path && pUrlData->path[0] ){ |
| 153 | 153 | blob_append_escaped_arg(&zCmd, pUrlData->path, 1); |
| 154 | 154 |
| --- src/http_transport.c | |
| +++ src/http_transport.c | |
| @@ -143,11 +143,11 @@ | |
| 143 | && (pUrlData->flags & URL_SSH_PATH)!=0 |
| 144 | ){ |
| 145 | blob_append_escaped_arg(&zCmd, |
| 146 | /* tag-20240206-b: |
| 147 | ** vvvv--- keep in sync with PATH= at tag-20240206-a */ |
| 148 | "PATH=bin:/usr/local/bin:/opt/homebrew/bin:$PATH", 1); |
| 149 | } |
| 150 | blob_append_escaped_arg(&zCmd, pUrlData->fossil, 1); |
| 151 | blob_append(&zCmd, " test-http", 10); |
| 152 | if( pUrlData->path && pUrlData->path[0] ){ |
| 153 | blob_append_escaped_arg(&zCmd, pUrlData->path, 1); |
| 154 |
| --- src/http_transport.c | |
| +++ src/http_transport.c | |
| @@ -143,11 +143,11 @@ | |
| 143 | && (pUrlData->flags & URL_SSH_PATH)!=0 |
| 144 | ){ |
| 145 | blob_append_escaped_arg(&zCmd, |
| 146 | /* tag-20240206-b: |
| 147 | ** vvvv--- keep in sync with PATH= at tag-20240206-a */ |
| 148 | "PATH=$HOME/bin:/usr/local/bin:/opt/homebrew/bin:$PATH", 1); |
| 149 | } |
| 150 | blob_append_escaped_arg(&zCmd, pUrlData->fossil, 1); |
| 151 | blob_append(&zCmd, " test-http", 10); |
| 152 | if( pUrlData->path && pUrlData->path[0] ){ |
| 153 | blob_append_escaped_arg(&zCmd, pUrlData->path, 1); |
| 154 |