fix(start.sh): add missing fi after UV bootstrap block

The UV install conditional was never closed, which caused 'unexpected
end of file' from bash -n and broke the macOS/Linux startup path.

Document in ChangelogModal BUG_FIXES (2026-03-26).

Made-with: Cursor
This commit is contained in:
elhard1
2026-03-26 09:11:30 +08:00
parent 3fd303db73
commit 54d4055da1
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -46,6 +46,7 @@ if ! command -v uv &> /dev/null; then
fi
export PATH="$HOME/.local/bin:$PATH"
echo "[*] UV installed successfully."
fi
# Get the directory where this script lives
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"