summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-13 20:33:14 -0500
committerseth <[email protected]>2023-12-13 20:33:14 -0500
commit7282595c4d825e330b60b84490af80c8a9a8c657 (patch)
tree7048bade04e943d0c63ce3bf82a72cf864ffbb58
parentb890162d62040bcfcc6a0106abd100e1fa9e4c54 (diff)
justfile: add clean rule
-rw-r--r--justfile12
1 files changed, 8 insertions, 4 deletions
diff --git a/justfile b/justfile
index 14b697e..b8af071 100644
--- a/justfile
+++ b/justfile
@@ -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: