Files
medical-mall/scripts/restore-config.bat
2026-05-14 15:28:09 +08:00

9 lines
227 B
Batchfile

@echo off
if exist manifest.json.bak copy /y manifest.json.bak manifest.json >nul 2>&1
if exist manifest.json.bak del manifest.json.bak >nul 2>&1
call npm run pages:full
if errorlevel 1 exit /b 1
echo Shared config restored.