We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1466c4a commit 9e2e282Copy full SHA for 9e2e282
README.md
@@ -43,8 +43,10 @@ conn = ACConnection.connect ()
43
acc = conn.commands
44
act = conn.types
45
46
-parameters = { 'publisherSetName': publisherSetName }
47
-acc.ExecuteAddOnCommand (act.AddOnCommandId ('AdditionalJSONCommands', 'Publish'), parameters)
+publisherSetNames = acc.GetPublisherSetNames ()
+for publisherSetName in publisherSetNames:
48
+ parameters = { 'publisherSetName': publisherSetName }
49
+ acc.ExecuteAddOnCommand (act.AddOnCommandId ('AdditionalJSONCommands', 'Publish'), parameters)
50
```
51
52
## GetProjectInfo
0 commit comments