diff --git a/dev-support/checkcompatibility.py b/dev-support/checkcompatibility.py index ea9c229344..9f0d797ff3 100755 --- a/dev-support/checkcompatibility.py +++ b/dev-support/checkcompatibility.py @@ -156,7 +156,7 @@ def checkout_java_acc(force): logging.info("Downloading Java ACC...") - url = "https://github.com/lvc/japi-compliance-checker/archive/2.1.tar.gz" + url = "https://github.com/lvc/japi-compliance-checker/archive/2.4.tar.gz" scratch_dir = get_scratch_dir() path = os.path.join(scratch_dir, os.path.basename(url)) jacc = urllib2.urlopen(url) @@ -166,7 +166,7 @@ def checkout_java_acc(force): subprocess.check_call(["tar", "xzf", path], cwd=scratch_dir) - shutil.move(os.path.join(scratch_dir, "japi-compliance-checker-2.1"), + shutil.move(os.path.join(scratch_dir, "japi-compliance-checker-2.4"), os.path.join(acc_dir))