fixed base install
This commit is contained in:
parent
ccae331e6f
commit
795f45e607
1 changed files with 10 additions and 8 deletions
18
justfile
18
justfile
|
@ -6,12 +6,14 @@ build TARGET:
|
||||||
just {{TARGET}}/build
|
just {{TARGET}}/build
|
||||||
|
|
||||||
install TARGET='all' DIR="~/.bin/":
|
install TARGET='all' DIR="~/.bin/":
|
||||||
if {{TARGET}} = all {
|
#!/usr/bin/bash
|
||||||
just install scripts {{DIR}}
|
if [[ {{TARGET}} == 'all' ]]; then
|
||||||
just install mkwin {{DIR}}
|
just install scripts {{DIR}}
|
||||||
just install path-convert {{DIR}}
|
just install mkwin {{DIR}}
|
||||||
just install qdls {{DIR}}
|
just install path-convert {{DIR}}
|
||||||
} else {
|
just install qdls {{DIR}}
|
||||||
just {{TARGET}}/install `realpath {{DIR}}`
|
chmod +x {{DIR}}/qdls
|
||||||
}
|
else
|
||||||
|
just {{TARGET}}/install `realpath {{DIR}}`
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue