From f83f0cb8747b2cff4acc1f0b33205ed550a42d6c Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 14 May 2025 22:10:02 +1200 Subject: [PATCH] bb64 release v31 --- install.sh | 7 ++++++- version.h | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index b90716c..7554918 100755 --- a/install.sh +++ b/install.sh @@ -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 diff --git a/version.h b/version.h index d2e8c9f..0a1c1b1 100644 --- a/version.h +++ b/version.h @@ -1 +1 @@ -static const char *VERSION = "30"; +static const char *VERSION = "31";