
| Key: |
JAMES-109
|
| Type: |
Bug
|
| Status: |
Closed
|
| Resolution: |
Fixed
|
| Priority: |
Blocker
|
| Assignee: |
Unassigned
|
| Reporter: |
Kristian Koehler
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
Environment:
|
Operating System: Windows NT/2K
Platform: PC
Operating System: Windows NT/2K
Platform: PC
|
|
|
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. ;-)
|
|
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. ;-) |
Show » |
|
submitted and applied.