Skip to content

Commit

Permalink
Synchronise access to dependency-info (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
keynmol authored Jul 19, 2022
1 parent 1ac06bc commit c5b3f59
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ trait VcpkgPluginImpl {

val allActualDependencies = deps
.flatMap { name =>
val info = manager.dependencyInfo(name.name)
val info = VcpkgPluginImpl.synchronized(manager.dependencyInfo(name.name))
val transitive = info.allTransitive(name)

name +: transitive
Expand Down

0 comments on commit c5b3f59

Please sign in to comment.