fixed syntax errors in base justfile
This commit is contained in:
parent
60833cef60
commit
ccae331e6f
1 changed files with 6 additions and 6 deletions
12
justfile
12
justfile
|
@ -5,13 +5,13 @@ alias i := install
|
||||||
build TARGET:
|
build TARGET:
|
||||||
just {{TARGET}}/build
|
just {{TARGET}}/build
|
||||||
|
|
||||||
install TARGET=all DIR="~/.bin/":
|
install TARGET='all' DIR="~/.bin/":
|
||||||
if {{TARGET}} = all {
|
if {{TARGET}} = all {
|
||||||
just install scripts {{DIR}}
|
just install scripts {{DIR}}
|
||||||
just install mkwin {{DIR}}
|
just install mkwin {{DIR}}
|
||||||
just install path-convert {{DIR}}
|
just install path-convert {{DIR}}
|
||||||
just install qdls {{DIR}}
|
just install qdls {{DIR}}
|
||||||
} else {
|
} else {
|
||||||
just {{TARGET}}/install `realpath {{DIR}}`
|
just {{TARGET}}/install `realpath {{DIR}}`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue