From 34e709e266181244550d80460897748311fcedde Mon Sep 17 00:00:00 2001 From: jules Ivanic Date: Fri, 18 Aug 2023 12:31:08 +0400 Subject: [PATCH] Remove sbt deprecation warning --- build/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/release.sh b/build/release.sh index c4168fc27f..9268effa3a 100755 --- a/build/release.sh +++ b/build/release.sh @@ -116,7 +116,7 @@ then elif [[ $BRANCH != "master" ]] then echo "Branch build for $BRANCH - Artifact: '$ARTIFACT'" - echo "version in ThisBuild := \"$BRANCH-SNAPSHOT\"" > version.sbt + echo "ThisBuild / version := \"$BRANCH-SNAPSHOT\"" > version.sbt if [[ $ARTIFACT == "base" ]]; then $SBT_VER -Dmodules=base publish; fi if [[ $ARTIFACT == "db" ]]; then $SBT_VER -Dmodules=db publish; fi if [[ $ARTIFACT == "js" ]]; then $SBT_VER -Dmodules=js publish; fi