mirror of
https://github.com/tonydamage/nux-env.git
synced 2025-12-11 13:24:28 +01:00
Added taskie configuration & other stuff.
Signed-off-by: Tony Tkacik <tonydamage@gmail.com>
This commit is contained in:
parent
6dafaf5b9d
commit
fc1b5bbc87
19 changed files with 744 additions and 7 deletions
16
machine/bootstrap/x64-nuxenv.sh
Executable file
16
machine/bootstrap/x64-nuxenv.sh
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/bin/bash
|
||||
function .not_present() {
|
||||
if which "$1" &> /dev/null; then
|
||||
return 1
|
||||
fi
|
||||
return 0;
|
||||
}
|
||||
|
||||
if .not_present yaml; then
|
||||
wget https://github.com/mikefarah/yaml/releases/download/1.11/yaml_linux_amd64 -O ~/bin/yaml
|
||||
chmod +x ~/bin/yaml
|
||||
fi
|
||||
|
||||
if .not_present jq; then
|
||||
apt install jq
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue