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}}` }