From 5adc0f7e65448ece6c8cde3f8e216430bf6f3618 Mon Sep 17 00:00:00 2001 From: Ty Rauber Date: Tue, 30 Jan 2024 17:59:29 +0100 Subject: [PATCH] fix: lint formatting --- plugin/src/withMapLibre.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugin/src/withMapLibre.ts b/plugin/src/withMapLibre.ts index 2b9df8d03..70bdbd0ef 100644 --- a/plugin/src/withMapLibre.ts +++ b/plugin/src/withMapLibre.ts @@ -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"; @@ -142,11 +142,11 @@ export function setExcludedArchitectures(project: XcodeProject): XcodeProject { null, { shellPath: '/bin/sh', - shellScript + shellScript, }, ); - }; - }; + } + } return project; }