mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 09:46:30 +00:00
20 lines
385 B
Batchfile
20 lines
385 B
Batchfile
@echo off
|
|
echo Make dirs, copy init dlls
|
|
set CURRENT_DIR=%cd%
|
|
cd /d %~dp0..
|
|
|
|
if exist dist-dlls rmdir dist-dlls /s /q
|
|
mkdir dist-dlls
|
|
if exist dist-azaion rmdir dist-azaion /s /q
|
|
mkdir dist-azaion
|
|
if exist dist rmdir dist /s /q
|
|
mkdir dist
|
|
del "AzaionSuite.Iterative.*"
|
|
|
|
echo Copying shared libs
|
|
|
|
robocopy "C:\\share" "dist-dlls" "*"
|
|
|
|
cd /d %CURRENT_DIR%
|
|
echo Init script completed.
|