postbuidscriptdir_scripte/CopyData.bat
Hoeglinger Eugen cb49cc309a Änderung
- Script Kopf angepasst
- Signieren mehreren Programmen - Warten auf Abschluss des Vorgängers
2022-03-01 13:59:36 +01:00

26 lines
1.2 KiB
Batchfile

@echo off
rem ****************************************************************************
rem *** ***
rem *** Copy Data ***
rem *** ***
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%" !
)