This repository has been archived on 2020-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
codesite/rebuild.cmd

12 lines
181 B
Batchfile

@echo off
:: Clean target directory
rmdir /s /q wwwroot
mkdir wwwroot
mkdir wwwroot\srv
copy static\* wwwroot\srv
:: Build pages
C:\bin\php54\php.exe rebuild.php
pause