You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 9, 2025. It is now read-only.
if [ !"${APP_TOKEN}" ] || [ -z"${APP_TOKEN}" ];then
28
+
echo"Instabug: err: APP_TOKEN not found. Make sure you've added the SDK initialization line [Instabug startWithToken: captureSource: invocationEvent:]"
29
+
exit 1
30
+
fi
31
+
echo"Instabug: found APP_TOKEN=${APP_TOKEN}"
32
+
33
+
# Check for simulator builds
34
+
if [ "$EFFECTIVE_PLATFORM_NAME"=="-iphonesimulator" ];then
35
+
if [ "${SKIP_SIMULATOR_BUILDS}" ] && [ "${SKIP_SIMULATOR_BUILDS}"-eq 1 ];then
0 commit comments