diff options
author | Alan Pearce | 2025-03-24 14:29:12 +0100 |
---|---|---|
committer | Alan Pearce | 2025-03-24 14:29:12 +0100 |
commit | 7b8b638defa3cb4d18a79126f261115f971513c2 (patch) | |
tree | 4c1237d9e6a89092dcbaf3060faecf04460985dc | |
parent | 243ce5bcef694c4c7f652c5e71adc4ee512a8de9 (diff) | |
download | searchix-7b8b638defa3cb4d18a79126f261115f971513c2.tar.lz searchix-7b8b638defa3cb4d18a79126f261115f971513c2.tar.zst searchix-7b8b638defa3cb4d18a79126f261115f971513c2.zip |
build: copy base CSS instead of linking
-rw-r--r-- | justfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/justfile b/justfile index 1f29874..5e2eb58 100644 --- a/justfile +++ b/justfile @@ -2,7 +2,7 @@ default: @just --list --justfile {{ justfile() }} --unsorted prepare: - nix build .#css -o frontend/static/base.css + cp -f $(nix build --print-out-paths .#css) frontend/static/base.css update-go-dependencies: go get -u all |