Skip to content

Commit

Permalink
ags: ignore build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
brckd committed Apr 9, 2024
1 parent ec23253 commit b527669
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/home/ags/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ in {
cp ${nixos-symbolic} ./assets/nixos-symbolic.svg
# Build bun files
bun install
bun comp
bun install || true
bun comp || true
'';

installPhase = ''
mkdir -p $out
cp -r config.js style.css assets $out
cp -r config.js style.css assets $out || true
'';
};
};
Expand Down

0 comments on commit b527669

Please sign in to comment.