Compare commits
No commits in common. "edf2fed12dccc72522c75073aaed6a9b69170514" and "47a05b4508f50bd48e29931ef4109afadef44db7" have entirely different histories.
edf2fed12d
...
47a05b4508
5 changed files with 0 additions and 58 deletions
18
justfile
18
justfile
|
@ -1,18 +0,0 @@
|
||||||
|
|
||||||
alias b := build
|
|
||||||
alias i := install
|
|
||||||
|
|
||||||
build TARGET:
|
|
||||||
just {{TARGET}}/build
|
|
||||||
|
|
||||||
install TARGET='all' DIR="~/.bin/":
|
|
||||||
#!/usr/bin/bash
|
|
||||||
if [[ {{TARGET}} == 'all' ]]; then
|
|
||||||
just install scripts {{DIR}}
|
|
||||||
just install mkwin {{DIR}}
|
|
||||||
just install path-convert {{DIR}}
|
|
||||||
just install qdls {{DIR}}
|
|
||||||
else
|
|
||||||
just {{TARGET}}/install `realpath {{DIR}}`
|
|
||||||
fi
|
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
|
|
||||||
alias b := build
|
|
||||||
alias i := install
|
|
||||||
|
|
||||||
build:
|
|
||||||
cargo build --release
|
|
||||||
|
|
||||||
install DIR: build
|
|
||||||
cp ./target/release/mkwin "{{DIR}}/mkwin"
|
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
|
|
||||||
alias b := build
|
|
||||||
alias i := install
|
|
||||||
|
|
||||||
build:
|
|
||||||
cargo build --release
|
|
||||||
|
|
||||||
install DIR: build
|
|
||||||
cp ./target/release/path-convert "{{DIR}}/path-convert"
|
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
|
|
||||||
alias b := build
|
|
||||||
alias i := install
|
|
||||||
|
|
||||||
build:
|
|
||||||
dos dotnet warp
|
|
||||||
|
|
||||||
install DIR: build
|
|
||||||
chmod +x qdls.exe
|
|
||||||
mv qdls.exe {{DIR}}/qdls
|
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
|
|
||||||
alias i := install
|
|
||||||
|
|
||||||
install DIR="~/.bin":
|
|
||||||
cp dos.sh {{DIR}}/dos
|
|
||||||
cp elevate.sh {{DIR}}/elevate
|
|
||||||
cp explorer.sh {{DIR}}/explorer
|
|
||||||
cp terminal.sh {{DIR}}/terminal
|
|
||||||
|
|
Loading…
Reference in a new issue