File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# appexchange-uploader
2
+
2
3
helper script to push gen1 packages to the appexchange
3
4
4
5
# usage
@@ -7,4 +8,3 @@ helper script to push gen1 packages to the appexchange
7
8
SALESFORCE_PASSWORD=XXXXXXXX \
8
9
GIT_SHA=`git rev-parse --short HEAD` \
9
10
npx @cloudanswers/appexchange-uploader
10
-
Original file line number Diff line number Diff line change @@ -88,8 +88,8 @@ function waitUntilUploaded(id) {
88
88
console . log ( "Status:" , res . Status ) ;
89
89
if ( res . Status == undefined ) {
90
90
throw new Error ( "Status not found on " + res ) ;
91
- } else if ( res . Status == "IN_PROGRESS" ) {
92
- console . log ( "Checking again..." ) ;
91
+ } else if ( res . Status == "IN_PROGRESS" || res . Status == "QUEUED" ) {
92
+ console . log ( "Checking again... status:" , res . Status ) ;
93
93
return waitUntilUploaded ( id ) ;
94
94
} else {
95
95
return res ;
You can’t perform that action at this time.
0 commit comments