Skip to content

Commit 5ef9eb2

Browse files
committed
Fix copy_to_dist batch script
1 parent 9b63ea0 commit 5ef9eb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

run/copy_to_dist.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@ECHO OFF
22

3-
IF NOT EXIST dist rmdir /q /s dist
3+
IF EXIST dist rmdir /q /s dist
44
mkdir dist || exit /b %errorlevel%
55

66
IF EXIST build_x64 (
@@ -15,5 +15,5 @@ IF EXIST build_x64 (
1515
)
1616
)
1717
IF EXIST dist\AdsToJava.dll (
18-
ren dist\AdsToJava.dll dist\AdsToJava-3.dll || exit /b %errorlevel%
18+
move dist\AdsToJava.dll dist\AdsToJava-3.dll || exit /b %errorlevel%
1919
)

0 commit comments

Comments
 (0)