1106:902c7d44ab23 | 1107:c6d7ac40bd3c |
---|---|
1 #!/bin/sh | |
2 set -eu | |
3 | |
4 install_it() { | |
5 mkdir -p ~/.local/bin | |
6 cd ~/.local/bin | |
7 curl -fsSL 'https://bina.egoist.dev/casey/just?dir=.' | sh | |
8 cd - | |
9 # cargo install just | |
10 } | |
11 | |
12 # This can probably be removed next time you look here | |
13 export JUST_CHOOSER="fzf --preview 'just --show {}'" | |
14 | |
15 . ~/.lib/sh/stubexec.sh |