Skip to content

Commit b37ae3d

Browse files
committed
v3.7
1 parent 7f90bf3 commit b37ae3d

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Instabug.bundle/Instabug_dsym_upload.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ if [ ! "${APP_TOKEN}" ] || [ -z "${APP_TOKEN}" ];then
3030
fi
3131
echo "Instabug: found APP_TOKEN=${APP_TOKEN}"
3232

33+
# Check internet connection
34+
if [ ! "`ping -c 1 instabug.com`" ]; then
35+
exit 0
36+
fi
37+
3338
# Check for simulator builds
3439
if [ "$EFFECTIVE_PLATFORM_NAME" == "-iphonesimulator" ]; then
3540
if [ "${SKIP_SIMULATOR_BUILDS}" ] && [ "${SKIP_SIMULATOR_BUILDS}" -eq 1 ]; then
26.6 KB
Binary file not shown.

Instabug.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Instabug"
3-
s.version = "3.6"
3+
s.version = "3.7"
44
s.summary = "Bug reporting for mobile apps. Learn more at http://instabug.com"
55
s.homepage = "http://instabug.com"
66
s.license = {
@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
2323
}
2424
s.author = { "Instabug" => "contactus@instabug.com" }
2525
s.platform = :ios, '5.0'
26-
s.source = { :git => "https://github.com/Instabug/Instabug-iOS.git", :tag => "3.6" }
26+
s.source = { :git => "https://github.com/Instabug/Instabug-iOS.git", :tag => "3.7" }
2727
s.source_files = 'Instabug.framework/Versions/A/Headers/*.{h}'
2828
s.resources = 'Instabug.bundle'
2929
s.preserve_paths = 'Instabug.framework/*', 'Instabug.bundle'

0 commit comments

Comments
 (0)