bb64 release v31

This commit is contained in:
Your Name 2025-05-14 22:10:02 +12:00
parent bc607d239d
commit f83f0cb874
2 changed files with 7 additions and 2 deletions

View File

@ -10,9 +10,14 @@ set -e
# 0. see if we were passed a folder to install to
# -----------------------------------------------------------------------------
INSTALL_DIR=$1
INSTALL_DIR="$1"
if [[ -z "$INSTALL_DIR" ]]; then
INSTALL_DIR="/usr/local/bin"
else
echo "Installing bb64 to $INSTALL_DIR"
if [[ ! -d "$INSTALL_DIR" ]]; then
mkdir -p "$INSTALL_DIR"
fi
fi

View File

@ -1 +1 @@
static const char *VERSION = "30";
static const char *VERSION = "31";