(mode)
| 76 | } |
| 77 | |
| 78 | function getMainAppBuildCommand(mode) { |
| 79 | if (mode === "fast") { |
| 80 | return "pnpm run desktop:build:release-fast"; |
| 81 | } |
| 82 | return "pnpm run desktop:build:exe"; |
| 83 | } |
| 84 | |
| 85 | function getInstallerBuildCommand(mode, devMode) { |
| 86 | if (devMode) return "pnpm run tauri:dev"; |