From 60833cef607b3864f6ef6aeff296fc84d260efc9 Mon Sep 17 00:00:00 2001 From: Valerie Wolfe Date: Fri, 14 Jun 2024 11:26:53 -0400 Subject: [PATCH] improved base justfile --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 6e446d5..2f36d36 100644 --- a/justfile +++ b/justfile @@ -3,7 +3,7 @@ alias b := build alias i := install build TARGET: - just -f "{{TARGET}}/justfile" build + just {{TARGET}}/build install TARGET=all DIR="~/.bin/": if {{TARGET}} = all { @@ -12,6 +12,6 @@ install TARGET=all DIR="~/.bin/": just install path-convert {{DIR}} just install qdls {{DIR}} } else { - dir=`realpath {{DIR}}` && just -f "{{TARGET}}/justfile" install "$dir" + just {{TARGET}}/install `realpath {{DIR}}` }