From 0348b169d6bf9f52b38484395faefa3fd595e8a8 Mon Sep 17 00:00:00 2001 From: Ashcon Partovi Date: Tue, 10 Oct 2023 16:12:36 -0700 Subject: Update debug-adapter-protocol --- packages/bun-debug-adapter-protocol/scripts/generate-protocol.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/bun-debug-adapter-protocol/scripts/generate-protocol.ts') diff --git a/packages/bun-debug-adapter-protocol/scripts/generate-protocol.ts b/packages/bun-debug-adapter-protocol/scripts/generate-protocol.ts index 51b2765b5..41847c6db 100644 --- a/packages/bun-debug-adapter-protocol/scripts/generate-protocol.ts +++ b/packages/bun-debug-adapter-protocol/scripts/generate-protocol.ts @@ -5,7 +5,7 @@ import { spawnSync } from "node:child_process"; run().catch(console.error); async function run() { - const cwd = new URL("../protocol/", import.meta.url); + const cwd = new URL("../src/protocol/", import.meta.url); const runner = "Bun" in globalThis ? "bunx" : "npx"; const write = (name: string, data: string) => { const path = new URL(name, cwd); -- cgit v1.2.3