mirror of
https://github.com/denoland/deno.git
synced 2025-02-02 04:38:21 -05:00
fix(std/wasi): remove stray console.log call (#8156)
A stray console.log call made it into path_open which should have been reverted, it was only meant for debugging on the CI.
This commit is contained in:
parent
6844caa9a5
commit
a2f126068e
1 changed files with 0 additions and 2 deletions
|
@ -1219,8 +1219,6 @@ export default class Context {
|
|||
) {
|
||||
try {
|
||||
path = Deno.realPathSync(resolvedPath);
|
||||
|
||||
console.log("RESOLVED REAL PATH: %s", path);
|
||||
if (relative(entry.path, path).startsWith("..")) {
|
||||
return ERRNO_NOTCAPABLE;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue