feat: 添加对deb和rpm包的构建支持,更新构建依赖和版本信息

This commit is contained in:
Elysia
2026-01-28 19:18:45 +08:00
parent 4b49424105
commit 640e0bd69d
5 changed files with 45 additions and 5 deletions

View File

@@ -41,6 +41,7 @@ const runCommandCapture = async (execCommand: string, execParams: string[]) => {
return await new Promise<{ code: number; stdout: string; stderr: string }>((resolve) => {
const child = spawn(execCommand, execParams, {
shell: true,
env: process.env
});
let stdout = '';