Skip to content

Commit

Permalink
Fixing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexios80 committed Aug 27, 2024
1 parent 3a0620e commit c6b9978
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/link.dart
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ Future<int> linkDependencies({
print('Resolved dependencies for ${resolved.path}');
} catch (e) {
print(
red.wrap('Failed to resolve dependencies for ${resolved.path}'));
red.wrap('Failed to resolve dependencies for ${resolved.path}'),
);
print(red.wrap(e.toString()));
}
}),
Expand Down Expand Up @@ -80,7 +81,8 @@ Future<int> linkDependencies({
await downloadQueue.tasksComplete;
print(
green.wrap(
'Downloaded all packages in ${downloadStopwatch.prettyPrint()}\n'),
'Downloaded all packages in ${downloadStopwatch.prettyPrint()}\n',
),
);

// Stop all stopwatches
Expand Down

0 comments on commit c6b9978

Please sign in to comment.