feat(cli): support URL overload for Deno.chdir (#10793)

This commit is contained in:
Casper Beyer 2021-06-03 22:32:18 +08:00 committed by GitHub
parent ece56d9935
commit 55e962b688
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -58,7 +58,7 @@
}
function chdir(directory) {
core.opSync("op_chdir", directory);
core.opSync("op_chdir", pathFromURL(directory));
}
function makeTempDirSync(options = {}) {