From ccae331e6f43764a7e3b35f984ab9876a6ba3891 Mon Sep 17 00:00:00 2001 From: Valerie Wolfe Date: Fri, 14 Jun 2024 11:28:47 -0400 Subject: [PATCH] fixed syntax errors in base justfile --- justfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/justfile b/justfile index 2f36d36..f0e51d0 100644 --- a/justfile +++ b/justfile @@ -5,13 +5,13 @@ alias i := install build TARGET: just {{TARGET}}/build -install TARGET=all DIR="~/.bin/": +install TARGET='all' DIR="~/.bin/": if {{TARGET}} = all { - just install scripts {{DIR}} - just install mkwin {{DIR}} - just install path-convert {{DIR}} - just install qdls {{DIR}} + just install scripts {{DIR}} + just install mkwin {{DIR}} + just install path-convert {{DIR}} + just install qdls {{DIR}} } else { - just {{TARGET}}/install `realpath {{DIR}}` + just {{TARGET}}/install `realpath {{DIR}}` }