github.com/vlifesystems/rulehunter@v0.0.0-20180501090014-673078aa4a83/examples/bin/init_www_windows.bat (about)

     1  @echo off
     2  rem
     3  rem  This command prepares the www directory for the examples
     4  rem
     5  
     6  set SCRIPT_DIR=%~dp0
     7  set SUPPORT_DIR=%SCRIPT_DIR%..\..\support
     8  set WWW_DIR=%SCRIPT_DIR%..\www
     9  
    10  echo Copying www support files to: %WWW_DIR%:
    11  echo.
    12  xcopy %SUPPORT_DIR%\bootstrap\* %WWW_DIR% /e /i /y | find /v "File(s) copied"
    13  xcopy %SUPPORT_DIR%\jquery\* %WWW_DIR% /e /i /y | find /v "File(s) copied"
    14  xcopy %SUPPORT_DIR%\rulehunter\* %WWW_DIR% /e /i /y | find /v "File(s) copied"
    15  xcopy %SUPPORT_DIR%\html5shiv\js\* %WWW_DIR%\js /e /i /y | find /v "File(s) copied"
    16  xcopy %SUPPORT_DIR%\respond\js\* %WWW_DIR%\js /e /i /y | find /v "File(s) copied"