Skip to content

Commit

Permalink
Fix xrbinup path existance checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Kovalenko committed Oct 5, 2014
1 parent 314a82e commit 6515431
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xrbinup.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ if !null_args!==1 (
echo usage: %0 ^<game_installation_dir^> ^<repository_root_dir^> {dbg^|mix^|rel}
goto ret
)
if not exist [%1] (
if not exist %1 (
echo path not found: %1
goto ret
)
if not exist [%2] (
if not exist %2 (
echo path not found: %2
goto ret
)
Expand Down

0 comments on commit 6515431

Please sign in to comment.