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
@@ -41,6 +41,7 @@ const NEW_FEATURES = [
];
const BUG_FIXES = [
"Fixed start.sh: added missing `fi` after UV install block — valid bash again; setup runs whether or not uv was preinstalled (2026-03-26)",
"Stable entity IDs for GDELT & News popups — no more wrong popup after data refresh (PR #63)",
"useCallback optimization for interpolation functions — eliminates redundant React re-renders on every 1s tick",
"Restored missing GDELT and datacenter background refreshes in slow-tier loop",
+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)"