From 25a24c5bb87c35645df4508934d7e4d991fcf0e3 Mon Sep 17 00:00:00 2001 From: Tobias Roeser Date: Tue, 14 May 2024 10:49:07 +0200 Subject: [PATCH] Correct version mangling in release tooling (use `DEFAULT_SCALA_VERSION`) Fix https://github.com/com-lihaoyi/Ammonite/issues/1491 --- build.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sc b/build.sc index 878dc25da..c52a1d61c 100644 --- a/build.sc +++ b/build.sc @@ -865,7 +865,7 @@ def publishExecutable() = { uploadedFile = os.temp( os.read(os.pwd / "amm-template.sh") .replace("DEFAULT_AMM_VERSION=", s"DEFAULT_AMM_VERSION=$latestTaggedVersion") - .replace("SCALA_VERSION=", s"SCALA_VERSION=$scalaBinaryVersion") + .replace("DEFAULT_SCALA_VERSION=", s"DEFAULT_SCALA_VERSION=$scalaBinaryVersion") ), tagName = latestTaggedVersion, uploadName = s"$scalaBinaryVersion-$buildVersion-bootstrap",