You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm seeing a weird error after updating from sbt-git1.0.0 to 1.0.1. The generated scmInfo value contains a duplicated .git on both the connection and the devConnection.
Steps to find this error
Create a new Scala project: sbt new scala/scala-seed.g8 && cd scala-seed-project/
Initialize an empty Git repository: git init
Add a fake remote: git remote add origin git@github.com:foo/bar.git
If changing to 1.0.0 with echo 'addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.0")' > project/plugins.sbt and running sbt "show scmInfo" again output is the expected one.
I'm seeing a weird error after updating from
sbt-git
1.0.0
to1.0.1
. The generatedscmInfo
value contains a duplicated.git
on both theconnection
and thedevConnection
.Steps to find this error
sbt new scala/scala-seed.g8 && cd scala-seed-project/
git init
git remote add origin git@github.com:foo/bar.git
sbt-ci-release
:echo 'addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.1")' > project/plugins.sbt
sbt "show scmInfo"
Expected (green) vs actual (red) output
Possible causes
This change seems to be provoking the issue.
The text was updated successfully, but these errors were encountered: