We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab086b5 commit 2b64cc2Copy full SHA for 2b64cc2
sbt-plugin/build.sbt
@@ -13,7 +13,7 @@ inThisBuild(
13
developers := Developers.all,
14
version ~= { dynVer =>
15
if (isRelease) dynVer
16
- else "2.0.1" // only for local publishing
+ else "2.1.0-SNAPSHOT" // only for local publishing
17
},
18
// Scalafix settings
19
semanticdbEnabled := true,
sbt-plugin/src/main/scala/ch/epfl/scala/SubmitDependencyGraph.scala
@@ -41,7 +41,7 @@ object SubmitDependencyGraph {
41
.parseFromString(raw.mkString)
42
.flatMap(Converter.fromJson[SubmitInput])
43
.get
44
- }
+ }.failOnException
45
46
private def submit(state: State, input: SubmitInput): State = {
47
checkGithubEnv() // fail fast if the Github CI environment is incomplete
0 commit comments