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.
2 parents 7c33066 + efb9275 commit 46307caCopy full SHA for 46307ca
modules/core/src/main/scala/org/scalasteward/core/forge/data/RepoOut.scala
@@ -34,7 +34,7 @@ final case class RepoOut(
34
archived: Boolean = false
35
) {
36
def parentOrRaise[F[_]](implicit F: ApplicativeThrow[F]): F[RepoOut] =
37
- parent.fold(F.raiseError[RepoOut](new Throwable(s"repo $name has no parent")))(F.pure)
+ parent.fold(F.raiseError[RepoOut](new Throwable(s"repo ${repo.show} has no parent")))(F.pure)
38
39
def repo: Repo =
40
Repo(owner.login, name)
0 commit comments