Skip to content

Commit

Permalink
fix(macos): bundle id doesn't update for extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
OutdatedGuy committed Jan 3, 2024
1 parent daf18d3 commit 83a74f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/platforms/macos.dart
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ void _setMacOSProjectFileBundleID(String bundleID) {
// `PRODUCT_BUNDLE_IDENTIFIER = "{{BUNDLE_ID}}.{{EXTENSION_NAME}}";`
.replaceAllMapped(
RegExp(
r'PRODUCT_BUNDLE_IDENTIFIER = "([A-Za-z0-9.-]+)\.([A-Za-z0-9.-]+)";',
r'PRODUCT_BUNDLE_IDENTIFIER = "([A-Za-z0-9.-_]+)\.([A-Za-z0-9.-_]+)";',
),
(match) {
final extensionName = match.group(2);
Expand Down

0 comments on commit 83a74f6

Please sign in to comment.