updated default install location
This commit is contained in:
parent
7e24c0e1ab
commit
20d9d7294b
2 changed files with 2 additions and 2 deletions
2
justfile
2
justfile
|
@ -5,7 +5,7 @@ alias i := install
|
||||||
build TARGET:
|
build TARGET:
|
||||||
just {{TARGET}}/build
|
just {{TARGET}}/build
|
||||||
|
|
||||||
install TARGET='all' DIR="~/.bin/":
|
install TARGET='all' DIR="/usr/local/bin":
|
||||||
#!/usr/bin/bash
|
#!/usr/bin/bash
|
||||||
if [[ {{TARGET}} == 'all' ]]; then
|
if [[ {{TARGET}} == 'all' ]]; then
|
||||||
just install scripts {{DIR}}
|
just install scripts {{DIR}}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
alias i := install
|
alias i := install
|
||||||
|
|
||||||
install DIR="~/.bin":
|
install DIR="/usr/local/bin":
|
||||||
cp cmd.sh {{DIR}}/cmd
|
cp cmd.sh {{DIR}}/cmd
|
||||||
cp dos.sh {{DIR}}/dos
|
cp dos.sh {{DIR}}/dos
|
||||||
cp elevate.sh {{DIR}}/elevate
|
cp elevate.sh {{DIR}}/elevate
|
||||||
|
|
Loading…
Reference in a new issue