Skip to content

Commit

Permalink
fix: Cache cli
Browse files Browse the repository at this point in the history
  • Loading branch information
j4qfrost committed Jan 14, 2023
1 parent ebfc196 commit 6f72fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/lib/src/cli/commands/build.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class CLIBuild extends CLICommand with CLIProject {

const String cmd = "dart";
final args = ["pub", "cache", "add", "-v", projectVersion!.toString()];
for (final String name in packageNames) {
for (final String name in ['conduit', ...packageNames]) {
final res = await Process.run(
cmd,
[...args, name],
Expand Down

0 comments on commit 6f72fc9

Please sign in to comment.