Files
SkillMate/.cleanup-backup/fix-sqlite.cmd
Claude Project Manager 6b9b6d4f20 Initial commit
2025-09-20 21:31:04 +02:00

13 Zeilen
248 B
Batchfile

@echo off
echo Fixing better-sqlite3 for Windows...
cd backend
echo Removing old better-sqlite3...
rmdir /s /q node_modules\better-sqlite3 2>nul
echo Reinstalling better-sqlite3...
npm install better-sqlite3 --build-from-source
echo Done!
pause