From 950ce3b77f38c5bfe1c36b772aa12e30a6889a9f Mon Sep 17 00:00:00 2001 From: imbytecat Date: Sun, 18 Jan 2026 14:02:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=88=A0=E9=99=A4=E8=BE=93=E5=87=BA?= =?UTF-8?q?=E7=9B=AE=E5=BD=95=E6=97=B6=E6=98=8E=E7=A1=AE=E6=8C=87=E5=AE=9A?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E4=B8=BA=20./out?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 删除输出目录时明确指定路径为 ./out --- build.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ts b/build.ts index a830357..33d8fa0 100644 --- a/build.ts +++ b/build.ts @@ -1,6 +1,6 @@ import { $ } from 'bun' -await $`rm -rf out` +await $`rm -rf ./out` const targetMap = { 'bun-windows-x64': 'x86_64-pc-windows-msvc',