-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P5
-
Affects Version/s: 1.4.0
-
Component/s: infrastructure
-
None
-
rc1
-
generic
-
generic
| Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
|---|---|---|---|---|---|---|
| JDK-2040634 | 1.4.0 | Dale Mcduffie | P5 | Resolved | Fixed | beta |
Name: dm26566 Date: 02/09/2001
This works:
v="`$j -version 2>&1`"
v=`echo $v | awk -F'"' '{ print $2 }'`
but this might be safer:
v="`$j -version 2>&1`"
v=`echo $v | head -1 | awk -F'"' '{ print $2 }'`
and this is simpler as well:
v=`$j -version 2>&1 | head -1 | awk -F'"' '{ print $2 }'`
======================================================================
- backported by
-
JDK-2040634 sanityck testing of BOOTDIR version can be simplified
-
- Resolved
-