Compare commits

..

No commits in common. "4d4d0d336b3604ba0a3b1f11fb6fb13b7b57c5c6" and "0b5e6f73790034af8b85ac73013a9d70fb199f4c" have entirely different histories.

View file

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