From 4ad6e0e07c766cde045decdc9a74e172d01d9372 Mon Sep 17 00:00:00 2001 From: "Bradford C. Smith" Date: Tue, 18 Oct 2022 10:56:06 -0700 Subject: [PATCH] Correct the name of the uber deploy jar This will hopefully fix the currently-broken CI build. --- build-scripts/build_compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-scripts/build_compiler.js b/build-scripts/build_compiler.js index df83b4e..8c2fafa 100755 --- a/build-scripts/build_compiler.js +++ b/build-scripts/build_compiler.js @@ -54,7 +54,7 @@ const compilerVersion = process.env.COMPILER_NIGHTLY == 'true' ).trim(); const compilerTargetName = compilerVersion === 'SNAPSHOT-1.0' || parseInt(compilerVersion.slice(1), 10) > 20221004 ? - 'compiler_uber_deploy.jar' : 'compiler_unshaded_deploy.jar'; + 'compiler_uberjar_deploy.jar' : 'compiler_unshaded_deploy.jar'; const compilerJavaBinaryPath = `./compiler/bazel-bin/${compilerTargetName}`; async function main() {