Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timonson committed Oct 2, 2023
1 parent e143ef2 commit 7e99312
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export function createHandler<C extends Context, S>(
) {
if (writePid) {
Deno.writeTextFileSync(
new URL("./.pid", Deno.mainModule).href,
new URL("./.pid", Deno.mainModule).pathname,
Deno.pid.toString(),
);
}
Expand Down
4 changes: 2 additions & 2 deletions test_deps.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { assertEquals } from "https://deno.land/std@0.192.0/testing/asserts.ts";
export { delay } from "https://deno.land/std@0.192.0/async/delay.ts";
export { assertEquals } from "https://deno.land/std@0.200.0/testing/asserts.ts";
export { delay } from "https://deno.land/std@0.200.0/async/delay.ts";

0 comments on commit 7e99312

Please sign in to comment.