Issue Details (XML | Word | Printable)

Key: JAMES-109
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Blocker Blocker
Assignee: Unassigned
Reporter: Kristian Koehler
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
JAMES Server

run.bat created wrong temp dir

Created: 10/Jun/03 08:37 PM   Updated: 22/Mar/04 12:50 AM
Return to search
Component/s: James Core
Affects Version/s: None
Fix Version/s: 2.2.0

Time Tracking:
Not Specified

Environment:
Operating System: Windows NT/2K
Platform: PC

Bugzilla Id: 20645


 Description  « Hide
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. ;-)

 All   Comments   Work Log   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
Noel J. Bergman added a comment - 10/Jun/03 10:04 PM
Fixed. Also reported to Avalon, which is where the fix actually needs to be
submitted and applied.