Revert "(fix): now run builds in nix shell"
Some checks failed
/ build-desktop (linux) (push) Has been cancelled
/ release (push) Has been cancelled
/ build-web (push) Has been cancelled
/ build-mobile (push) Has been cancelled

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

View file

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

View file

@ -36,7 +36,7 @@ for (const targetDir of targetDirs) {
const entry = relative(rootDir, fullPath);
console.log(`Linting ${entry}...`);
try {
execSync("bun run lint", { cwd: fullPath, stdio: "inherit" });
execSync("bun --bun run lint", { cwd: fullPath, stdio: "inherit" });
console.log(`${entry} linted successfully.`);
} catch {
console.error(`Failed to lint ${entry}.`);