0
0
Fork 0
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:
Casper Beyer 2020-10-28 09:45:31 +08:00 committed by GitHub
parent 6844caa9a5
commit a2f126068e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}