21 lines
856 B
Batchfile
21 lines
856 B
Batchfile
@echo off
|
|
rem ****************************************************************************
|
|
rem *** History ***
|
|
rem ****************************************************************************
|
|
rem *** Version 1.0 - 2022-01-27 - Eugen Hoeglinger
|
|
rem - Initially created
|
|
rem *** Version 1.1 -
|
|
rem ****************************************************************************
|
|
|
|
echo.
|
|
echo Copy data:
|
|
|
|
rem Copy data
|
|
if "1"=="0" (
|
|
mkdir "%TARGET_DIR%" >nul 2>&1
|
|
|
|
xcopy /I/F/Y "$(TARGET_DIRPath)" "%TARGET_DIR%\application\" | find /v /i "copied"
|
|
xcopy /I/F/Y "$(TARGET_DIRDir)\BlockStyler\*.*" "%TARGET_DIR%\application\" | find /v /i "copied"
|
|
xcopy /I/F/Y "$(TARGET_DIRDir)\images\*.*" "%TARGET_DIR%\application\" | find /v /i "copied"
|
|
@echo Files copied to "%TARGET_DIR%" !
|
|
) |