1

I need a list of all the component of a certain stream that still needs delivery to default

  • Don't forget to read http://stackoverflow.com/help/accepted-answer for your questions (this one and the others) – VonC Nov 23 '16 at 07:00

1 Answers1

0

There doesn't seem to be one simple command to use.

You would have to initiate a preview of a deliver, to see which ones would actually need said deliver.

    cleartool deliver -preview

Since the default for a deliver is to deliver all activities in the stream that have changed since the last deliver operation from the stream, that would allow for detecting any activity candidate for delivery, component after components.

You might also need to:

You would need to:

  • list all components in a stream, using fmt_ccase:

    cleartool descr -fmt "%[mod_comps]CXp" stream:<stream>@<apvobtag>
    

(that would list the modifiable components for a given stream)

  • cross-reference the activities elements with the root folder of the components in order to find which component is involved by an activity listed as to be delivered.
Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250