From f9f3f3de12c7da2e038d73e3363ef06fdfe80e63 Mon Sep 17 00:00:00 2001 From: George Powell Date: Tue, 24 Feb 2026 19:10:53 -0500 Subject: [PATCH] Update deploy.sh --- deploy.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/deploy.sh b/deploy.sh index 5f7c321..24cf031 100755 --- a/deploy.sh +++ b/deploy.sh @@ -3,6 +3,8 @@ set -e cd "$(dirname "$0")" +BUN=$(which bun) + echo "Pulling latest changes..." PULL_OUTPUT=$(git pull) echo "$PULL_OUTPUT" @@ -12,10 +14,10 @@ if [ "$PULL_OUTPUT" = "Already up to date." ]; then fi echo "Installing dependencies..." -bun i +$BUN i echo "Building..." -bun --bun run build +$BUN --bun run build SERVICE_NAME="$(basename "$(pwd)").service" echo "Restarting service ($SERVICE_NAME)..."