Skip to content

Commit

Permalink
wip: nixify
Browse files Browse the repository at this point in the history
  • Loading branch information
pshirshov committed Oct 26, 2024
1 parent 08e3975 commit 6e3c693
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion devops/coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ set -x

source ./devops/.env.sh

sbt -batch -no-colors -v clean coverage "'$VERSION_COMMAND test'" "'$VERSION_COMMAND coverageReport'"
sbt -batch -no-colors -v clean coverage "$VERSION_COMMAND test" "$VERSION_COMMAND coverageReport"
4 changes: 2 additions & 2 deletions devops/publish-scala.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ source ./devops/.env.sh
echo "PUBLISH SCALA LIBRARIES..."

if [[ "$CI_BRANCH" == "develop" ]] ; then
sbt -batch -no-colors -v "'$VERSION_COMMAND clean'" "'$VERSION_COMMAND package'" "'$VERSION_COMMAND publishSigned'"
sbt -batch -no-colors -v "$VERSION_COMMAND clean" "$VERSION_COMMAND package" "$VERSION_COMMAND publishSigned"
else
sbt -batch -no-colors -v "'$VERSION_COMMAND clean'" "'$VERSION_COMMAND package'" "'$VERSION_COMMAND publishSigned'" sonatypeBundleRelease || exit 1
sbt -batch -no-colors -v "$VERSION_COMMAND clean" "$VERSION_COMMAND package" "$VERSION_COMMAND publishSigned" sonatypeBundleRelease || exit 1
fi

0 comments on commit 6e3c693

Please sign in to comment.