Skip to content

Commit

Permalink
print command
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Dec 5, 2024
1 parent 0ad9653 commit 2d9f388
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/quest/bin/quest.dart
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,9 @@ class Quest {
if (Directory(fullPath).existsSync()) {
fullPath = p.join(tempDir.path, '${name}_${url.hashCode}');
}
final processResult =
await Process.run('gh', ['repo', 'clone', url, '--', fullPath]);
final arguments = ['repo', 'clone', url, '--', fullPath];
print('Running `gh ${arguments.join(' ')}`');
final processResult = await Process.run('gh', arguments);
final stdout = processResult.stdout as String;
final stderr = processResult.stderr as String;
print('stdout:');
Expand Down

0 comments on commit 2d9f388

Please sign in to comment.