Skip to content

Commit

Permalink
order
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Dec 5, 2024
1 parent a1677a9 commit f371d33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/quest/bin/quest.dart
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,10 @@ class Quest {
for (var application in await Application.listFromFile(applicationFile)) {
final path = await cloneRepo(application.url, tempDir);
print('Cloned $application into $path');
final depsListResult =
(await runFlutter(['pub', 'deps', '--json'], path)).stdout;
print(
'Temp dir contents: ${tempDir.listSync(recursive: true).join('\n')}');
final depsListResult =
(await runFlutter(['pub', 'deps', '--json'], path)).stdout;
final depsJson =
jsonDecode(depsListResult.substring(depsListResult.indexOf('{')))
as Map<String, dynamic>;
Expand Down

0 comments on commit f371d33

Please sign in to comment.