From a2566eecd96f28e970d6f9e9391d5e21ba47a572 Mon Sep 17 00:00:00 2001 From: tdstein Date: Fri, 13 Oct 2023 16:21:54 -0400 Subject: [PATCH] Adds aliases --- justfile | 2 +- test/bats/justfile | 4 ++++ test/cy/justfile | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index c831a1758..b35e452bb 100644 --- a/justfile +++ b/justfile @@ -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 diff --git a/test/bats/justfile b/test/bats/justfile index 249f3163d..75b706375 100644 --- a/test/bats/justfile +++ b/test/bats/justfile @@ -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 { diff --git a/test/cy/justfile b/test/cy/justfile index 67198f146..bcef43c14 100644 --- a/test/cy/justfile +++ b/test/cy/justfile @@ -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 {