| Summary: | commit-log-editor doesn't handle a core.editor path with spaces well, complains about an invalid path | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Eryn Wells <eryn_wells> |
| Component: | Tools / Tests | Assignee: | Nobody <webkit-unassigned> |
| Status: | NEW --- | ||
| Severity: | Normal | CC: | ap, jbedard, webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | WebKit Nightly Build | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
|
Description
Eryn Wells
2022-12-02 12:42:42 PST
Clearly, this is fixable if we start to honor backslashes. However, another approach is to honor Sublime's own documentation, which says that the user needs to make sure that subl is in the PATH: -------------------------------------------- v3: To use subl, the Sublime Text bin folder needs to be added to the path. For a typical installation of Sublime Text, this will be located at /Applications/Sublime Text.app/Contents/SharedSupport/bin. v2: The first task is to make a symlink to subl. Assuming you've placed Sublime Text 2 in the Applications folder, and that you have a ~/bin directory in your path, you can run: ln -s "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" ~/bin/subl -------------------------------------------- With this, the fix is for git-webkit setup to simply not set core.editor to the full path. |