diff options
author | Andy Clement <aclement@gopivotal.com> | 2015-01-08 08:28:35 -0800 |
---|---|---|
committer | Andy Clement <aclement@gopivotal.com> | 2015-01-08 08:28:35 -0800 |
commit | 8db5893d03d4bdcdf7bcfe7409cd3b1b66dc406e (patch) | |
tree | 0197c7d169c6a41c395445b6a89390233c977b36 /build | |
parent | fa8938845f03855f59fff155b1e0d118e85ead7f (diff) | |
download | aspectj-8db5893d03d4bdcdf7bcfe7409cd3b1b66dc406e.tar.gz aspectj-8db5893d03d4bdcdf7bcfe7409cd3b1b66dc406e.zip |
450634: support Windows 8 when computing best batch file format
Diffstat (limited to 'build')
-rw-r--r-- | build/src/$installer$/org/aspectj/Main.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/src/$installer$/org/aspectj/Main.java b/build/src/$installer$/org/aspectj/Main.java index a6a038c32..b5da78d49 100644 --- a/build/src/$installer$/org/aspectj/Main.java +++ b/build/src/$installer$/org/aspectj/Main.java @@ -687,7 +687,7 @@ class InstallContext { public boolean onWindowsPro() { return getOS().equals("Windows NT") || getOS().equals("Windows 2000") || getOS().equals("Windows XP") - || getOS().equals("Windows Vista") || getOS().equals("Windows 7"); + || getOS().equals("Windows Vista") || getOS().equals("Windows 7") || getOS().startsWith("Windows 8"); } public boolean onMacintosh() { |