From 03696dbf93ffe130b1e0bc6e09a3a1780e64e405 Mon Sep 17 00:00:00 2001 From: Bryan Oltman Date: Wed, 24 May 2023 22:19:09 -0400 Subject: [PATCH] fix(shorebird_cli): only use / path separators when reading zip archive (#546) --- packages/shorebird_cli/lib/src/aab/aab_differ.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/shorebird_cli/lib/src/aab/aab_differ.dart b/packages/shorebird_cli/lib/src/aab/aab_differ.dart index f10d14b1..8d473c69 100644 --- a/packages/shorebird_cli/lib/src/aab/aab_differ.dart +++ b/packages/shorebird_cli/lib/src/aab/aab_differ.dart @@ -70,7 +70,7 @@ class AabDiffer { final archive = ZipDecoder().decodeBuffer(inputStream); return utf8.decode( archive.files - .firstWhere((file) => file.name == p.join('META-INF', 'MANIFEST.MF')) + .firstWhere((file) => file.name == 'META-INF/MANIFEST.MF') .content as List, ); }