grahampugh / jamf-upload

Scripts for uploading packages to Jamf Cloud
Apache License 2.0
147 stars 37 forks source link

Minor output improvement #122

Closed MLBZ521 closed 9 months ago

MLBZ521 commented 9 months ago

This fixes the output to be printed as a str instead of as a tuple.

Before:

JamfPolicyUploader: ("Replacing any instances of 'policy_name' with", "'Escrow Buddy'")
JamfPolicyUploader: ("Replacing any instances of 'POLICY_FREQUENCY' with", "'Once per computer'")
JamfPolicyUploader: ("Replacing any instances of 'CATEGORY' with", "'Technical Support'")
JamfPolicyUploader: ("Replacing any instances of 'POLICY_TRIGGER_CHECKIN' with", "'True'")

After:

JamfPolicyUploader: Replacing any instances of 'policy_name' with 'Escrow Buddy'
JamfPolicyUploader: Replacing any instances of 'POLICY_FREQUENCY' with 'Once per computer'
JamfPolicyUploader: Replacing any instances of 'CATEGORY' with 'Technical Support'
JamfPolicyUploader: Replacing any instances of 'POLICY_TRIGGER_CHECKIN' with 'True'
JamfPolicyUploader: Replacing any instances of 'CUSTOM_TRIGGER' with 'Escrow_Buddy'
grahampugh commented 9 months ago

Thanks, good catch.