File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -76,4 +76,8 @@ PLIST_SUBTITLE="Some subtitle"
76
76
ARCHS=" armv6 armv7"
77
77
78
78
79
-
79
+ # HOCKEYAPP
80
+ if [ -z " ${HOCKEYAPP_NOTIFY_VALUE} " ]; then
81
+ HOCKEYAPP_NOTIFY_VALUE=1
82
+ fi
83
+
Original file line number Diff line number Diff line change @@ -169,9 +169,9 @@ if [ "a${HOCKEYAPP_UPLOAD_NEEDED}" == "a1" ]; then
169
169
DSYM_FILE=$( find ../output -d 1 -iname ' *.zip' | head -n 1)
170
170
if [ -n " $DSYM_FILE " ]
171
171
then
172
- /usr/bin/curl " https://rink.hockeyapp.net/api/2/apps/upload" -F ipa=@" ${IPA_FILE} " -F dsym=@" ${DSYM_FILE} " -H " X-HockeyAppToken: ${API_TOKEN_HOCKEYAPP} " -F notes=" Build uploaded automatically from Jenkins." -F release_type=0 -F notes_type=0 -F status=2 -F notify=1
172
+ /usr/bin/curl " https://rink.hockeyapp.net/api/2/apps/upload" -F ipa=@" ${IPA_FILE} " -F dsym=@" ${DSYM_FILE} " -H " X-HockeyAppToken: ${API_TOKEN_HOCKEYAPP} " -F notes=" Build uploaded automatically from Jenkins." -F release_type=0 -F notes_type=0 -F status=2 -F notify=${HOCKEYAPP_NOTIFY_VALUE}
173
173
else
174
- /usr/bin/curl " https://rink.hockeyapp.net/api/2/apps/upload" -F ipa=@" ${IPA_FILE} " -H " X-HockeyAppToken: ${API_TOKEN_HOCKEYAPP} " -F notes=" Build uploaded automatically from Jenkins." -F release_type=0 -F notes_type=0 -F status=2 -F notify=1
174
+ /usr/bin/curl " https://rink.hockeyapp.net/api/2/apps/upload" -F ipa=@" ${IPA_FILE} " -H " X-HockeyAppToken: ${API_TOKEN_HOCKEYAPP} " -F notes=" Build uploaded automatically from Jenkins." -F release_type=0 -F notes_type=0 -F status=2 -F notify=${HOCKEYAPP_NOTIFY_VALUE}
175
175
fi
176
176
echo
177
177
You can’t perform that action at this time.
0 commit comments