mirror of
https://github.com/nodejs/node.git
synced 2025-05-01 08:42:45 +00:00
path: resolve normalize drive letter to lower case
make path.resolve work the same as path.normalize
This commit is contained in:
parent
d22637c36c
commit
f6e5740180
@ -163,6 +163,11 @@ if (isWindows) {
|
||||
resolvedTail = normalizeArray(resolvedTail.split(/[\\\/]+/).filter(f),
|
||||
!resolvedAbsolute).join('\\');
|
||||
|
||||
// If device is a drive letter, we'll normalize to lower case.
|
||||
if (resolvedDevice && resolvedDevice.charAt(1) === ':')
|
||||
resolvedDevice = resolvedDevice[0].toLowerCase() +
|
||||
resolvedDevice.substr(1);
|
||||
|
||||
return (resolvedDevice + (resolvedAbsolute ? '\\' : '') + resolvedTail) ||
|
||||
'.';
|
||||
};
|
||||
|
@ -21,6 +21,7 @@
|
||||
|
||||
var common = require('../common');
|
||||
var assert = require('assert');
|
||||
var path = require('path');
|
||||
|
||||
var module = require('module');
|
||||
|
||||
@ -29,7 +30,7 @@ var isWindows = process.platform === 'win32';
|
||||
var file, delimiter, paths;
|
||||
|
||||
if (isWindows) {
|
||||
file = 'C:\\Users\\Rocko Artischocko\\node_stuff\\foo';
|
||||
file = path.normalize('C:\\Users\\Rocko Artischocko\\node_stuff\\foo');
|
||||
delimiter = '\\'
|
||||
} else {
|
||||
file = '/usr/test/lib/node_modules/npm/foo';
|
||||
@ -39,4 +40,4 @@ if (isWindows) {
|
||||
paths = module._nodeModulePaths(file);
|
||||
|
||||
assert.ok(paths.indexOf(file + delimiter + 'node_modules') !== -1);
|
||||
assert.ok(Array.isArray(paths));
|
||||
assert.ok(Array.isArray(paths));
|
||||
|
@ -321,7 +321,7 @@ if (isWindows) {
|
||||
[['c:/ignore', 'd:\\a/b\\c/d', '\\e.exe'], 'd:\\e.exe'],
|
||||
[['c:/ignore', 'c:/some/file'], 'c:\\some\\file'],
|
||||
[['d:/ignore', 'd:some/dir//'], 'd:\\ignore\\some\\dir'],
|
||||
[['.'], process.cwd()],
|
||||
[['.'], path.normalize(process.cwd())],
|
||||
[['//server/share', '..', 'relative\\'], '\\\\server\\share\\relative'],
|
||||
[['c:/', '//'], 'c:\\'],
|
||||
[['c:/', '//dir'], 'c:\\dir'],
|
||||
|
Loading…
Reference in New Issue
Block a user