Skip to content

Commit

Permalink
fix: lint formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tyrauber committed Jan 30, 2024
1 parent e59ffb8 commit 5adc0f7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions plugin/src/withMapLibre.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ export function setExcludedArchitectures(project: XcodeProject): XcodeProject {
buildSettings['"EXCLUDED_ARCHS[sdk=iphonesimulator*]"'] = '"arm64"';

/**
* Delete Duplicate Signature File
* https://github.com/CocoaPods/CocoaPods/issues/12022
*/
* Delete Duplicate Signature File
* https://github.com/CocoaPods/CocoaPods/issues/12022
*/
const shellScript = `if [ "$XCODE_VERSION_MAJOR" = "1500" ]; then
echo "Remove signature files (Xcode 15 workaround)";
rm -rf "$BUILD_DIR/Release-iphoneos/Mapbox.xcframework-ios.signature";
Expand All @@ -142,11 +142,11 @@ export function setExcludedArchitectures(project: XcodeProject): XcodeProject {
null,
{
shellPath: '/bin/sh',
shellScript
shellScript,
},
);
};
};
}
}
return project;
}

Expand Down

0 comments on commit 5adc0f7

Please sign in to comment.