Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dcharkes committed Oct 10, 2023
1 parent dc7a682 commit 0cb3621
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/native_assets_builder/test/build_runner/helpers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ Future<void> runPubGet({
}) async {
final result = await runProcess(
executable: Uri.file(Platform.resolvedExecutable),
arguments: ['pub', '--suppress-analytics', 'get'],
arguments: [
'pub',
'--suppress-analytics', // Prevent extra log entries.
'get',
],
workingDirectory: workingDirectory,
logger: logger,
);
Expand Down

0 comments on commit 0cb3621

Please sign in to comment.