mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-10 00:42:29 -06:00
11 lines
348 B
Bash
Executable File
11 lines
348 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
if [ "$CONFIGURATION" != "Debug" ]; then
|
|
find "${DWARF_DSYM_FOLDER_PATH}" -name "*.dSYM" \
|
|
-exec "${BUILD_DIR%Build/*}/SourcePackages/checkouts/firebase-ios-sdk/Crashlytics/upload-symbols" \
|
|
-gsp "${PROJECT_DIR}/Bitwarden/Application/Support/GoogleService-Info.plist" \
|
|
-p ios -- {} +
|
|
fi
|