fix: use OS-independent abs. path check (#8505)
This commit is contained in:
parent
8dbb4f3153
commit
bfd4e68f25
@ -846,7 +846,7 @@ export class ElementHandle<
|
|||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
const files = filePaths.map((filePath) => {
|
const files = filePaths.map((filePath) => {
|
||||||
if (path.isAbsolute(filePath)) {
|
if (path.win32.isAbsolute(filePath) || path.posix.isAbsolute(filePath)) {
|
||||||
return filePath;
|
return filePath;
|
||||||
} else {
|
} else {
|
||||||
return path.resolve(filePath);
|
return path.resolve(filePath);
|
||||||
|
Loading…
Reference in New Issue
Block a user