Skip to content

Commit 6515431

Browse files
author
Pavel Kovalenko
committed
Fix xrbinup path existance checks.
1 parent 314a82e commit 6515431

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xrbinup.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ if !null_args!==1 (
1111
echo usage: %0 ^<game_installation_dir^> ^<repository_root_dir^> {dbg^|mix^|rel}
1212
goto ret
1313
)
14-
if not exist [%1] (
14+
if not exist %1 (
1515
echo path not found: %1
1616
goto ret
1717
)
18-
if not exist [%2] (
18+
if not exist %2 (
1919
echo path not found: %2
2020
goto ret
2121
)

0 commit comments

Comments
 (0)