initial commit of TUI sketching

This commit is contained in:
sigil-03 2025-07-13 21:45:05 -06:00
parent 59ef0dd757
commit 5c7230d2f4
9 changed files with 429 additions and 2 deletions

View file

@ -2,9 +2,10 @@
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
BINFILE="${SCRIPT_DIR}/target/release/ent"
ENTUI_BINFILE="${SCRIPT_DIR}/target/release/entui"
INSTALL_DIR="/usr/local/bin"
cargo build --release
echo "copying ent to ${INSTALL_DIR}"
sudo cp $BINFILE $INSTALL_DIR
echo "copying ent + entui to ${INSTALL_DIR}"
sudo cp $BINFILE $ENTUI_BINFILE $INSTALL_DIR
echo "ent installed to ${INSTALL_DIR}"