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

18 lines
323 B
Batchfile
Raw Normal View History

2013-09-21 01:22:48 +00:00
@echo off
2014-05-09 22:57:03 +00:00
echo Cleaning target directory...
echo.
2014-05-09 22:57:03 +00:00
rmdir /s /q wwwroot
mkdir wwwroot
mkdir wwwroot\srv
copy static\* wwwroot
2014-05-09 22:57:03 +00:00
echo Building pages...
echo.
2015-02-06 04:11:38 +00:00
start /b php rebuild.php 4 0
start /b php rebuild.php 4 1
start /b php rebuild.php 4 2
start /b php rebuild.php 4 3
start /b php rebuild.php 4 4
2014-05-09 22:57:03 +00:00
2013-09-21 01:22:48 +00:00
pause