Broken app label: axurerp10 #7

Open
opened 2026-01-19 18:32:25 +00:00 by michael · 1 comment
Owner

Originally created by @AirBookMac on GitHub.

What's wrong with the app label?
Download URL does not work

2025-12-17 10:43:49 : ERROR : axurerp10 : need to provide 'downloadURL'
Error running script: return code was 1.

**Have you confirmed this Issue has not been reported already?
yes (two are closed)

Installomator version
Version: 10.8beta
Date: 2025-03-28

Additional context
Using jamf Pro

Installomator log
 Executing Policy Update Axure RP 10
 Running script Installomator 10.8...
 Script exit code: 1
 Script result: 2025-12-17 10:43:48 : REQ : : shifting arguments for Jamf
 2025-12-17 10:43:48 : INFO : axurerp10 : setting variable from argument NOTIFY=silent
 2025-12-17 10:43:48 : INFO : axurerp10 : setting variable from argument BLOCKING_PROCESS_ACTION=silent_fail
 2025-12-17 10:43:48 : INFO : axurerp10 : Total items in argumentsArray: 3
 2025-12-17 10:43:48 : INFO : axurerp10 : argumentsArray: NOTIFY=silent
 2025-12-17 10:43:48 : REQ : axurerp10 : ################## Start Installomator v. 10.8beta, date 2025-03-28
 2025-12-17 10:43:48 : INFO : axurerp10 : ################## Version: 10.8beta
 2025-12-17 10:43:48 : INFO : axurerp10 : ################## Date: 2025-03-28
 2025-12-17 10:43:48 : INFO : axurerp10 : ################## axurerp10
 2025-12-17 10:43:49 : INFO : axurerp10 : Reading arguments again: NOTIFY=silent
 2025-12-17 10:43:49 : ERROR : axurerp10 : need to provide 'downloadURL'
 Error running script: return code was 1.

Originally created by @AirBookMac on GitHub. **What's wrong with the app label?** Download URL does not work 2025-12-17 10:43:49 : ERROR : axurerp10 : need to provide 'downloadURL' Error running script: return code was 1. **Have you confirmed this Issue has not been reported already? yes (two are closed) **Installomator version** Version: 10.8beta Date: 2025-03-28 **Additional context** Using jamf Pro **Installomator log**  Executing Policy Update Axure RP 10  Running script Installomator 10.8...  Script exit code: 1  Script result: 2025-12-17 10:43:48 : REQ : : shifting arguments for Jamf  2025-12-17 10:43:48 : INFO : axurerp10 : setting variable from argument NOTIFY=silent  2025-12-17 10:43:48 : INFO : axurerp10 : setting variable from argument BLOCKING_PROCESS_ACTION=silent_fail  2025-12-17 10:43:48 : INFO : axurerp10 : Total items in argumentsArray: 3  2025-12-17 10:43:48 : INFO : axurerp10 : argumentsArray: NOTIFY=silent  2025-12-17 10:43:48 : REQ : axurerp10 : ################## Start Installomator v. 10.8beta, date 2025-03-28  2025-12-17 10:43:48 : INFO : axurerp10 : ################## Version: 10.8beta  2025-12-17 10:43:48 : INFO : axurerp10 : ################## Date: 2025-03-28  2025-12-17 10:43:48 : INFO : axurerp10 : ################## axurerp10  2025-12-17 10:43:49 : INFO : axurerp10 : Reading arguments again: NOTIFY=silent  2025-12-17 10:43:49 : ERROR : axurerp10 : need to provide 'downloadURL'  Error running script: return code was 1.
michael added the application-issue label 2026-01-19 18:32:25 +00:00
Author
Owner

@AirBookMac commented on GitHub:

this worked for me

axurerp10)
name="Axure RP 10"
type="dmg"
if ; then
downloadURL=$(curl -s https://www.axure.com/release-history/rp10 | grep -o 'https://[^ ].dmg' | grep arm64 | head -1)
elif ; then
downloadURL=$(curl -s https://www.axure.com/release-history/rp10 | grep -o 'https://[^ ]
.dmg' | grep -v arm64 | head -1)
fi
appNewVersion=$( curl -sL https://www.axure.com/release-history/rp10 | grep -Eo '[0-9]{1,4}.[0-9]{1,4}.[0-9]{1,4}.[0-9]{1,4}' -m 1 )
expectedTeamID="HUMW6UU796"
versionKey="CFBundleVersion"
appName="Axure RP 10.app"
blockingProcesses=( "Axure RP 10" )
;;

@AirBookMac commented on GitHub: this worked for me axurerp10) name="Axure RP 10" type="dmg" if [[ $(arch) == "arm64" ]]; then downloadURL=$(curl -s https://www.axure.com/release-history/rp10 | grep -o 'https://[^ ]*\.dmg' | grep arm64 | head -1) elif [[ $(arch) == "i386" ]]; then downloadURL=$(curl -s https://www.axure.com/release-history/rp10 | grep -o 'https://[^ ]*\.dmg' | grep -v arm64 | head -1) fi appNewVersion=$( curl -sL https://www.axure.com/release-history/rp10 | grep -Eo '[0-9]{1,4}\.[0-9]{1,4}\.[0-9]{1,4}\.[0-9]{1,4}' -m 1 ) expectedTeamID="HUMW6UU796" versionKey="CFBundleVersion" appName="Axure RP 10.app" blockingProcesses=( "Axure RP 10" ) ;;
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Installomator/Installomator#7