-
Notifications
You must be signed in to change notification settings - Fork 15
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Checking mergeability…
Don’t worry, you can still create the pull request.
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: coder/mux
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: coder/mux
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: path-handling
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 11 commits
- 27 files changed
- 1 contributor
Commits on Nov 13, 2025
-
🤖 fix: minimize Windows changes for dev + release.exe
- Revert SSHRuntime/LocalRuntime/process cleanup edits - Remove platform-specific path layer and UI formatting - Restore bashExecutionService, execAsync, tests to main - Keep Windows build: Makefile bash shell + release.yml Windows job + setup-cmux action Only 3 files changed vs main: Makefile, release.yml, setup-cmux action.yml _Generated with `cmux`_.
Configuration menu - View commit details
-
Copy full SHA for 43546b2 - Browse repository at this point
Copy the full SHA 43546b2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 644a391 - Browse repository at this point
Copy the full SHA 644a391View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e958d2 - Browse repository at this point
Copy the full SHA 4e958d2View commit details -
🤖 refactor: add conditional RUNNER variable for Windows compatibility (…
…#572) This PR improves Windows build compatibility by introducing a conditional `RUNNER` variable in the Makefile. - **Add RUNNER variable** that conditionally uses: - `npx` on Windows (where `bun x` doesn't correctly pass arguments) - `bun x` on non-Windows systems for better performance - **Update all 30+ commands** to use `$(RUNNER)` instead of hardcoded `bun x` or `npx` - **Add explanatory comments** for Windows-specific behavior On Windows, `bun x` doesn't correctly pass arguments to commands, causing build failures. This change ensures consistent build behavior across all platforms by using the appropriate tool for each OS. ```makefile ifeq ($(OS),Windows_NT) RUNNER := npx else RUNNER := bun x endif ``` All commands now use `$(RUNNER)` for cross-platform compatibility. _Generated with `cmux`_
Configuration menu - View commit details
-
Copy full SHA for 7ba76c9 - Browse repository at this point
Copy the full SHA 7ba76c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for b09c032 - Browse repository at this point
Copy the full SHA b09c032View commit details -
Configuration menu - View commit details
-
Copy full SHA for bcc30d3 - Browse repository at this point
Copy the full SHA bcc30d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 78096ca - Browse repository at this point
Copy the full SHA 78096caView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e2cdb9 - Browse repository at this point
Copy the full SHA 6e2cdb9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 756fe3f - Browse repository at this point
Copy the full SHA 756fe3fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e6ceac - Browse repository at this point
Copy the full SHA 9e6ceacView commit details -
feat: add cross-platform path handling with PlatformPaths utility
- Add PlatformPaths class to handle Windows and Unix paths correctly - Replace all direct path operations with PlatformPaths methods - Support Windows drive letters, UNC paths, and backslash separators - Maintain consistent path abbreviation across platforms - Add comprehensive tests for all path operations
Configuration menu - View commit details
-
Copy full SHA for 1745365 - Browse repository at this point
Copy the full SHA 1745365View commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff main...path-handling