fixed syntax errors in base justfile

This commit is contained in:
Valerie Wolfe 2024-06-14 11:28:47 -04:00
parent 60833cef60
commit ccae331e6f

View file

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