Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class PackagesCheckLicensesCommand extends Command<int> {
continue;
}

final packagePath = path.normalize(cachePackageEntry.root.path);
final packagePath = path.normalize(path.fromUri(cachePackageEntry.root));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should try to run our e2e test on windows because it would most likely have been caught then: https://github.com/VeryGoodOpenSource/very_good_cli/blob/main/.github/workflows/e2e.yaml#L51

final packageDirectory = Directory(packagePath);
if (!packageDirectory.existsSync()) {
final errorMessage =
Expand Down