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

Test on Windows #3

Merged
merged 5 commits into from
Jan 13, 2014
Merged

Test on Windows #3

merged 5 commits into from
Jan 13, 2014

Commits on Jan 13, 2014

  1. Configuration menu
    Copy the full SHA
    8852546 View commit details
    Browse the repository at this point in the history
  2. On Windows, add base directories like \\?\c:\

    The path._makeLong function will return paths like these on Windows:
    
        \\?\c:\foo\bar
    
    The fs.realpath function walks through Windows paths treating '\\?\c:\' as the base directory, so this is what we store.  The process.cwd and os.tmpdir functions may not return the same case for base directory names, so we normalize to lowercase.
    tschaub committed Jan 13, 2014
    Configuration menu
    Copy the full SHA
    e01ef8d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8b3ec27 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c9a33d3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a904f88 View commit details
    Browse the repository at this point in the history