Skip to content

Commit 9c6322f

Browse files
?
1 parent 20154c4 commit 9c6322f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.sc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ trait Tests extends Cross.Module[String] with JavaModule {
133133
def repositoriesTask = Task.Anon {
134134
Seq(
135135
coursier.parse.RepositoryParser.repository(
136-
"ivy:" + directories.localRepo().path.toNIO.toUri.toASCIIString + "/[defaultPattern]"
136+
pprint.err.log("ivy:" + directories.localRepo().path.toNIO.toUri.toASCIIString + "[defaultPattern]")
137137
).fold(err => throw new Exception(err), x => x)
138138
) ++ super.repositoriesTask()
139139
}
@@ -163,10 +163,10 @@ trait TestsJni extends Cross.Module[String] with JavaModule {
163163
def repositoriesTask = Task.Anon {
164164
Seq(
165165
coursier.parse.RepositoryParser.repository(
166-
"ivy:" + directories.localRepo().path.toNIO.toUri.toASCIIString + "/[defaultPattern]"
166+
pprint.err.log("ivy:" + directories.localRepo().path.toNIO.toUri.toASCIIString + "[defaultPattern]")
167167
).fold(err => throw new Exception(err), x => x),
168168
coursier.parse.RepositoryParser.repository(
169-
"ivy:" + `directories-jni`.localRepo().path.toNIO.toUri.toASCIIString + "/[defaultPattern]"
169+
pprint.err.log("ivy:" + `directories-jni`.localRepo().path.toNIO.toUri.toASCIIString + "[defaultPattern]")
170170
).fold(err => throw new Exception(err), x => x)
171171
) ++ super.repositoriesTask()
172172
}

0 commit comments

Comments
 (0)