Commit e0020ab
fix: installer hangs on Git Bash due to backslash in heredoc
Replace `home_dir.replace('\', '/')` with `home_dir.replace(os.sep, '/')`
in the embedded Python script. The literal `\` inside a bash heredoc gets
reduced to a single `\` by Git Bash on Windows, causing a Python
SyntaxError (unterminated string literal) that silently hangs the
installer at step 6.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>1 parent c01c2ea commit e0020ab
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
505 | 505 | | |
506 | 506 | | |
507 | 507 | | |
508 | | - | |
| 508 | + | |
509 | 509 | | |
510 | 510 | | |
511 | 511 | | |
| |||
0 commit comments