Details
-
Bug
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
None
-
None
-
Operating System: Windows NT/2K
Platform: PC
-
20645
Description
run.bat creates the temp dir with the following statement:
----- 8< —
...
if not exist "%PHOENIX_TMPDIR%" mkdir %PHOENIX_TMPDIR%
...
----- 8< —
This should be changed to:
----- 8< —
...
if not exist "%PHOENIX_TMPDIR%" mkdir "%PHOENIX_TMPDIR%"
...
----- 8< —
The dir value should be quoted.