Skip to content

Commit

Permalink
add x64 1.6jdk
Browse files Browse the repository at this point in the history
  • Loading branch information
ystyle committed Nov 30, 2015
1 parent 058b7e8 commit 5dbddbf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/install.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set SYS_ARCH=64
) else (
set SYS_ARCH=32
)
(echo root: %JVMS_HOME% && echo path: %JAVA_HOME%\bin && echo arch: %SYS_ARCH% && echo proxy: none) > %JVMS_HOME%\settings.txt
(echo root: %JVMS_HOME% && echo path: %JAVA_HOME% && echo arch: %SYS_ARCH% && echo proxy: none) > %JVMS_HOME%\settings.txt

notepad %JVMS_HOME%\settings.txt
@echo on
1 change: 1 addition & 0 deletions jdkversions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"latest_x64": "http://7xo3cg.com1.z0.glb.clouddn.com/jdk1.8.0_31_x64.zip",
"1.6.0_43_x86": "http://7xo3cg.com1.z0.glb.clouddn.com/jdk1.6.0_43_x86.zip",
"1.6.0_43_x64": "http://7xo3cg.com1.z0.glb.clouddn.com/jdk1.6.0_43_x64.zip",
"1.7.0_67_x64": "http://7xo3cg.com1.z0.glb.clouddn.com/jdk1.7.0_67_x64.zip",
"1.8.0_31_x64": "http://7xo3cg.com1.z0.glb.clouddn.com/jdk1.8.0_31_x64.zip"
}
4 changes: 2 additions & 2 deletions jvms.iss
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ begin
RegWriteExpandStringValue(HKEY_LOCAL_MACHINE, 'SYSTEM\CurrentControlSet\Control\Session Manager\Environment', 'Path', path);
end;
if Pos('%JVMS_SYMLINK%',path) = 0 then begin
path := path+';%JAVA_HOME%\bin';
path := '%JAVA_HOME%\bin;' + path;
StringChangeEx(path,';;',';',True);
RegWriteExpandStringValue(HKEY_LOCAL_MACHINE, 'SYSTEM\CurrentControlSet\Control\Session Manager\Environment', 'Path', path);
end;
Expand All @@ -242,7 +242,7 @@ begin
RegWriteExpandStringValue(HKEY_CURRENT_USER, 'Environment', 'Path', path);
end;
if Pos('%JAVA_HOME%',path) = 0 then begin
path := path+';%JAVA_HOME%\bin';
path := '%JAVA_HOME%\bin;' + path;
StringChangeEx(path,';;',';',True);
RegWriteExpandStringValue(HKEY_CURRENT_USER, 'Environment', 'Path', path);
end;
Expand Down

0 comments on commit 5dbddbf

Please sign in to comment.