feat(builds): put result symlinks in folder
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-11-21 21:58:27 -05:00
parent 6760ddade6
commit c7e4d1d3e9
2 changed files with 4 additions and 1 deletions

View file

@ -69,7 +69,7 @@ if (args['a'] || args['all']) {
console.log(updateCustomPackage('some-sass-language-server'));
spawnSync('nix-fast-build', ['-f', `${FLAKE}#nixFastChecks`], {
spawnSync('nixFastBuild', [], {
shell: true,
stdio: [process.stdin, process.stdout, process.stderr],
});

View file

@ -24,6 +24,9 @@
cd "$FLAKE" || return
nix-fast-build -f .#nixFastChecks "$@"
mkdir -p results
mv -f result-* results
'';
};
in {