From 6e3eb4250ff82bf75bf68f115b297ee99d28ece2 Mon Sep 17 00:00:00 2001 From: JJ Loneman Date: Thu, 24 Jul 2025 00:36:07 -0400 Subject: [PATCH] =?UTF-8?q?fix(generic=5Funix=5Finstall):=20=F0=9F=94=A7?= =?UTF-8?q?=20add=20/usr/local/bin=20check=20(#97)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #97 --- generic_unix_install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/generic_unix_install.sh b/generic_unix_install.sh index 870b0dd..c19c7d1 100755 --- a/generic_unix_install.sh +++ b/generic_unix_install.sh @@ -13,6 +13,9 @@ fi cargo build --release +# Ensure /usr/local/bin exists which may not in newer macs +$root mkdir -p /usr/local/bin + if [ "$(uname)" == "Darwin" ]; then curl -L "https://github.com/pine64/blisp/releases/download/v0.0.4/blisp-apple-x86_64-v0.0.4.zip" -o "blisp-apple-x86_64-v0.0.4.zip" unzip "blisp-apple-x86_64-v0.0.4.zip"