From a4a9e8881ee87c6fdafbea6a745c4f96abab5541 Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Sun, 7 Mar 2021 23:29:34 -0500 Subject: [PATCH 1/2] Genuine sbt --- build.sh | 5 +++++ project/build.properties | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index b5253d68b..ef9a67312 100755 --- a/build.sh +++ b/build.sh @@ -53,4 +53,9 @@ export CI_SNAPSHOT_RELEASE="${projectPrefix}publish" # for now, until we're confident in the new release scripts, just close the staging repo. export CI_SONATYPE_RELEASE="; sonatypePrepare; sonatypeBundleUpload; sonatypeClose" +# change this only when we need to update the sbt-the-bash-script +SBT_LAUNCH_VER=1.4.8 +curl -L --silent "https://github.com/sbt/sbt/releases/download/v$SBT_LAUNCH_VER/sbt-$SBT_LAUNCH_VER.tgz" > $HOME/sbt.tgz +tar zxf $HOME/sbt.tgz +export PATH="$HOME/sbt/bin:$PATH" sbt clean ${projectPrefix}test ${projectPrefix}publishLocal $releaseTask diff --git a/project/build.properties b/project/build.properties index 0b2e09c5a..b5ef6fff3 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.4.7 +sbt.version=1.4.8 From 375314105c990cd39a04253a3cab19ed04970c9a Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Sun, 7 Mar 2021 23:43:35 -0500 Subject: [PATCH 2/2] wip --- build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sh b/build.sh index ef9a67312..6b6d02449 100755 --- a/build.sh +++ b/build.sh @@ -58,4 +58,5 @@ SBT_LAUNCH_VER=1.4.8 curl -L --silent "https://github.com/sbt/sbt/releases/download/v$SBT_LAUNCH_VER/sbt-$SBT_LAUNCH_VER.tgz" > $HOME/sbt.tgz tar zxf $HOME/sbt.tgz export PATH="$HOME/sbt/bin:$PATH" +which sbt sbt clean ${projectPrefix}test ${projectPrefix}publishLocal $releaseTask