Skip to content

Commit

Permalink
fix: Check for Pods/FirebaseCrashlytics directory when using SPM (#377
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Gustl22 authored Feb 18, 2025
1 parent 54ac45a commit 7ef4ddd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ bashScript = %q(
#!/bin/bash
PATH="\${PATH}:\$FLUTTER_ROOT/bin:\$HOME/.pub-cache/bin"
if [ -z "\$PODS_ROOT" ]; then
if [ -z "\$PODS_ROOT" ] || [ ! -d "\$PODS_ROOT/FirebaseCrashlytics" ]; then
# Cannot use "BUILD_DIR%/Build/*" as per Firebase documentation, it points to "flutter-project/build/ios/*" path which doesn't have run script
DERIVED_DATA_PATH=\$(echo "\$BUILD_ROOT" | sed -E 's|(.*DerivedData/[^/]+).*|\\1|')
PATH_TO_CRASHLYTICS_UPLOAD_SCRIPT="\${DERIVED_DATA_PATH}/SourcePackages/checkouts/firebase-ios-sdk/Crashlytics/run"
Expand Down

0 comments on commit 7ef4ddd

Please sign in to comment.