diff options
author | George Abbott <george@gabbott.dev> | 2025-01-26 11:37:22 +0000 |
---|---|---|
committer | George Abbott <george@gabbott.dev> | 2025-01-26 11:37:22 +0000 |
commit | 82abadcecc7534b4847238ee2a977f33256b0439 (patch) | |
tree | ad8752c1dc9914829e80bc2f3f1a45dfec8f4b4a /scripts/sh/update | |
parent | bac748dbe8c28cf1ed3b387b24f89ffe5a58ffc9 (diff) |
sh
Diffstat (limited to 'scripts/sh/update')
-rwxr-xr-x | scripts/sh/update | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/sh/update b/scripts/sh/update new file mode 100755 index 0000000..5eda0dd --- /dev/null +++ b/scripts/sh/update @@ -0,0 +1,17 @@ +#!/bin/sh +# Updates all executables (i.e. all scripts and binaries here) to be in +# PATH. Upon this script being run, all executables should be able to be found. +# Executables are symlinked to $HOME/.local/bin. + +[ -z "$NEODOT_SCR" ] && echo "NEODOT_SCR not set" && exit +[ -z "$NEODOT_SH" ] && echo "NEODOT_SH not set" && exit +# todo: add $NEODOT_C envvar. + +mkdir -p "$HOME/.local/bin" + +# Update all in sh +find $NEODOT_SH -type f -exec sh -c 'ln -sf "{}" $HOME/.local/bin/$(basename {})' \; + +# Build all executables +odin build $NEODOT_SCR/jezup -out:$NEODOT_SCR/target/jezup +odin build $NEODOT_SCR/dexter -out:$NEODOT_SCR/target/dexter |