diff options
| author | seth <[email protected]> | 2023-12-13 20:33:14 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-13 20:33:14 -0500 |
| commit | 7282595c4d825e330b60b84490af80c8a9a8c657 (patch) | |
| tree | 7048bade04e943d0c63ce3bf82a72cf864ffbb58 /justfile | |
| parent | b890162d62040bcfcc6a0106abd100e1fa9e4c54 (diff) | |
justfile: add clean rule
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -1,11 +1,8 @@ alias b := build alias c := check -alias d := deploy -alias da := deploy-all alias dr := dry-run alias p := pre-commit alias sw := switch -alias sd := switch-and-deploy alias t := test alias u := update alias ui := update-input @@ -26,7 +23,7 @@ rebuild subcmd root="false": [linux] [macos] boot: - @just rebuild boot {{ asRoot }} + @just rebuild boot {{ asRoot }} [linux] [macos] @@ -36,6 +33,13 @@ build: check: nix flake check +clean: + rm -rf \ + result* \ + repl-result-out* \ + config.tf.json \ + .terraform/ + [linux] [macos] dry-run: |
