diff options
author | Alan Pearce | 2024-06-22 15:06:41 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-22 15:06:41 +0200 |
commit | 024b4f78d792056a5f0c71985a520eeed7eacf88 (patch) | |
tree | 6f7f4262f9811d9173c5c3d8c5ace894ace650e5 /justfile | |
parent | 81071b127e3fd15429cc1eba57326649cab1dfb8 (diff) | |
download | website-024b4f78d792056a5f0c71985a520eeed7eacf88.tar.lz website-024b4f78d792056a5f0c71985a520eeed7eacf88.tar.zst website-024b4f78d792056a5f0c71985a520eeed7eacf88.zip |
just: fix clean task in CI
Diffstat (limited to 'justfile')
-rwxr-xr-x | justfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/justfile b/justfile index 7bf15b1..169f1d2 100755 --- a/justfile +++ b/justfile @@ -5,7 +5,7 @@ default: @just --list --justfile {{ justfile() }} --unsorted clean: - rm -r website + rm -fr website check-licenses: nix run nixpkgs#go-licenses check ./... |