fixed base install

This commit is contained in:
Valerie Wolfe 2024-06-14 13:49:17 -04:00
parent ccae331e6f
commit 795f45e607

View file

@ -6,12 +6,14 @@ build TARGET:
just {{TARGET}}/build
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}}
} else {
just {{TARGET}}/install `realpath {{DIR}}`
}
#!/usr/bin/bash
if [[ {{TARGET}} == 'all' ]]; then
just install scripts {{DIR}}
just install mkwin {{DIR}}
just install path-convert {{DIR}}
just install qdls {{DIR}}
chmod +x {{DIR}}/qdls
else
just {{TARGET}}/install `realpath {{DIR}}`
fi