Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows support #102

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft

Windows support #102

wants to merge 2 commits into from

Commits on Oct 10, 2024

  1. Configuration menu
    Copy the full SHA
    a523aab View commit details
    Browse the repository at this point in the history
  2. Fix project root detection (on Windows)

    This fixes two issues:
    
    - `path.Clean(…)` would transform a path like `C:\User\john\bar` to
      just `.` – fixed with `filepath.Clean()`
    - The check for the filesystem root using `/` never works on Windows,
      as there it is e.g. `C:\` – check for an "unchanged parent" instead
    kdambekalns committed Oct 10, 2024
    Configuration menu
    Copy the full SHA
    e67021c View commit details
    Browse the repository at this point in the history