Closed alejandrohdezma closed 3 years ago
Thank you for reporting and providing such a clear minimal reproduction (with expected output!). The scmInfo
setting is configured by sbt-git, not sbt-ci-release? Would you be able to open an issue here https://github.com/sbt/sbt-git/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc I tried to move the issue since sbt-ci-release is now part of the sbt organization but I don't seem to have permissions for that.
Will do! Thanks @olafurpg
I'm seeing a weird error after updating from
sbt-ci-release
1.5.7
to1.5.9
. 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.github.sbt" % "sbt-ci-release" % "1.5.9")' > project/plugins.sbt
sbt "show scmInfo"
Expected (green) vs actual (red) output
Possible causes
I haven't seen any change directly in
sbt-ci-release
that will provoke such an error. The only relevant thing I've seen is that in1.5.9
thesbt-sonatype
dependency was upgraded, although I didn't see anything relevant there.