Skip to content

Commit

Permalink
fix: Убрана очистка целевого каталога при выгрузке в файлы.
Browse files Browse the repository at this point in the history
  • Loading branch information
arkuznetsov committed Oct 4, 2023
1 parent 545a787 commit 8e48db4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
3 changes: 1 addition & 2 deletions scripts/conf2edt.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ IF %ERROR_CODE% neq 0 (
echo [INFO] Clear temporary files...
IF exist "%LOCAL_TEMP%" rd /S /Q "%LOCAL_TEMP%"
md "%LOCAL_TEMP%"
IF exist "%V8_DST_PATH%" rd /S /Q "%V8_DST_PATH%"
md "%V8_DST_PATH%"
IF not exist "%V8_DST_PATH%" md "%V8_DST_PATH%"

echo [INFO] Checking configuration source type...

Expand Down
3 changes: 1 addition & 2 deletions scripts/conf2xml.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ IF %ERROR_CODE% neq 0 (
echo [INFO] Clear temporary files...
IF exist "%LOCAL_TEMP%" rd /S /Q "%LOCAL_TEMP%"
md "%LOCAL_TEMP%"
IF exist "%V8_DST_PATH%" rd /S /Q "%V8_DST_PATH%"
md "%V8_DST_PATH%"
IF not exist "%V8_DST_PATH%" md "%V8_DST_PATH%"

echo [INFO] Checking configuration source type...

Expand Down
3 changes: 1 addition & 2 deletions scripts/dp2edt.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,7 @@ IF %ERROR_CODE% neq 0 (
echo [INFO] Clear temporary files...
IF exist "%LOCAL_TEMP%" rd /S /Q "%LOCAL_TEMP%"
md "%LOCAL_TEMP%"
IF exist "%V8_DST_PATH%" rd /S /Q "%V8_DST_PATH%"
md %V8_DST_PATH%
IF not exist "%V8_DST_PATH%" md "%V8_DST_PATH%"

echo [INFO] Set infobase for export data processor/report...

Expand Down
3 changes: 1 addition & 2 deletions scripts/ext2edt.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,7 @@ IF %ERROR_CODE% neq 0 (
echo [INFO] Clear temporary files...
IF exist "%LOCAL_TEMP%" rd /S /Q "%LOCAL_TEMP%"
md "%LOCAL_TEMP%"
IF exist "%V8_DST_PATH%" rd /S /Q "%V8_DST_PATH%"
md %V8_DST_PATH%
IF not exist "%V8_DST_PATH%" md "%V8_DST_PATH%"

echo [INFO] Set infobase for export configuration extension...

Expand Down
1 change: 1 addition & 0 deletions tests/example.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
V8_VERSION=8.3.20.2290
V8_CONVERT_TOOL=designer
V8_EDT_VERSION=2023.1.4
V8_DB_SRV_DBMS=MSSQLServer
V8_DB_SRV_ADDR=localhost
Expand Down

0 comments on commit 8e48db4

Please sign in to comment.