We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd95c08 commit bf39b0aCopy full SHA for bf39b0a
src/runtime/cd.ts
@@ -5,7 +5,7 @@ export function cd(dir: string) {
5
console.log($.brightBlue("$ %s"), `cd ${dir}`);
6
}
7
try {
8
- Deno.chdir(new URL(dir, $.mainModule).pathname);
+ Deno.chdir(dir);
9
} catch (err) {
10
if (err instanceof Deno.errors.NotFound) {
11
const stack: string = (new Error().stack!.split("at ")[2]).trim();
0 commit comments