Skip to content

Commit

Permalink
Adds aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
tdstein committed Oct 13, 2023
1 parent 7d8cbe3 commit a2566ee
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ alias a := all
alias b := build
alias c := clean
alias co := cover
alias i := image
alias im := image
alias l := lint
alias r := run
alias t := test
Expand Down
4 changes: 4 additions & 0 deletions test/bats/justfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
alias c := clean
alias i := install
alias t := test

_with_debug := if env_var_or_default("DEBUG", "true") == "true" {
"set -x pipefail"
} else {
Expand Down
4 changes: 4 additions & 0 deletions test/cy/justfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
alias c := clean
alias i := install
alias t := test

_with_debug := if env_var_or_default("DEBUG", "true") == "true" {
"set -x pipefail"
} else {
Expand Down

0 comments on commit a2566ee

Please sign in to comment.