Skip to content

Commit

Permalink
fix duplicate upload
Browse files Browse the repository at this point in the history
  • Loading branch information
vaind committed Oct 13, 2023
1 parent 157d7af commit bf123cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Future<void> processFlutterVerion(FlutterVersion version) async {
final archives = await source.listSymbolArchives(version);
final dir = tempDir.childDirectory(version.tagName);
for (final archive in archives) {
await source.downloadAndExtractTo(dir, archive.path);
await collector.upload(dir, archive.platform, version);
}
final archiveDir = dir.childDirectory(archive.platform.operatingSystem);
await source.downloadAndExtractTo(archiveDir, archive.path);
await collector.upload(archiveDir, archive.platform, version);
}
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class SymbolCollectorCli {
Future<String> _execute(List<String> arguments) async {
_ensureIsExecutable();

_log.fine('Executing ${path.basename(cli)} $arguments');
_log.fine('Executing ${path.basename(cli)} ${arguments.join(' ')}');
final process = await Process.start(cli, arguments);

final output = StringBuffer();
Expand Down

0 comments on commit bf123cf

Please sign in to comment.