Skip to content

Commit

Permalink
fix: we should see vpmDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
anatawa12 committed Nov 13, 2023
1 parent fdf3170 commit 161e401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PackageBuilder/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ async Task<IEnumerable<VRCPackageManifest>> DownloadPackageManifestFromVpmReposi
result.Add(manifest);

// if there are unknown dependency packages, warn
if (!manifest.Dependencies.Keys.All(knownPackages.Contains))
if (!manifest.VPMDependencies.Keys.All(knownPackages.Contains))
{
// TODO: should this be error and omit from package listing?
Serilog.Log.Warning(
Expand Down

0 comments on commit 161e401

Please sign in to comment.