Merge pull request #111 from Elhard1/fix/start-sh-missing-fi

fix(start.sh): add missing fi after UV bootstrap block
This commit is contained in:
Shadowbroker
2026-03-25 20:25:41 -06:00
committed by GitHub
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)"