Reapply "(fix): now run builds in nix shell"
Some checks failed
/ build-web (push) Failing after 2m19s
/ build-desktop (linux) (push) Failing after 2m7s
/ release (push) Has been cancelled
/ build-mobile (push) Has been cancelled

This reverts commit 10da530e9e.
This commit is contained in:
Alois 2026-06-28 19:10:23 +02:00
commit 3c7a28ceb2
3 changed files with 6 additions and 4 deletions

View file

@ -34,7 +34,7 @@ for (const fullPath of packageDirs) {
const entry = fullPath.replace(packagesDir + "/", "");
console.log(`Building ${entry}...`);
try {
execSync("bun --bun run build", { cwd: fullPath, stdio: "inherit" });
execSync("bun run build", { cwd: fullPath, stdio: "inherit" });
console.log(`${entry} built successfully.`);
} catch {
console.error(`Failed to build ${entry}.`);