--- old/make/conf/jib-profiles.js 2019-01-31 16:30:41.657716752 -0800 +++ new/make/conf/jib-profiles.js 2019-01-31 16:30:41.261703021 -0800 @@ -185,7 +185,9 @@ // Identifies the version of this format to the tool reading it. // 1.1 signifies that the publish, publish-src and get-src features are usable. // 1.2 signifies that artifact uploads should fail on missing artifacts by default. - data.format_version = "1.2"; + // 1.3 input.get(, "home_path") automatically goes down into a single top + // dir just like default configure_args and environment_path variables. + data.format_version = "1.3"; // Organization, product and version are used when uploading/publishing build results data.organization = ""; @@ -363,7 +365,7 @@ }; common.boot_jdk_version = "11"; - common.boot_jdk_home = input.get("boot_jdk", "home_path") + "/jdk-" + common.boot_jdk_home = input.get("boot_jdk", "install_path") + "/jdk-" + common.boot_jdk_version + (input.build_os == "macosx" ? ".jdk/Contents/Home" : "");