Skip to content

Commit 2b64cc2

Browse files
committed
Fix parsing in sbt 1.3
1 parent ab086b5 commit 2b64cc2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sbt-plugin/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ inThisBuild(
1313
developers := Developers.all,
1414
version ~= { dynVer =>
1515
if (isRelease) dynVer
16-
else "2.0.1" // only for local publishing
16+
else "2.1.0-SNAPSHOT" // only for local publishing
1717
},
1818
// Scalafix settings
1919
semanticdbEnabled := true,

sbt-plugin/src/main/scala/ch/epfl/scala/SubmitDependencyGraph.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ object SubmitDependencyGraph {
4141
.parseFromString(raw.mkString)
4242
.flatMap(Converter.fromJson[SubmitInput])
4343
.get
44-
}
44+
}.failOnException
4545

4646
private def submit(state: State, input: SubmitInput): State = {
4747
checkGithubEnv() // fail fast if the Github CI environment is incomplete

0 commit comments

Comments
 (0)