Subversion Repositories DevTools

Rev

Rev 4318 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4318 Rev 4319
Line 766... Line 766...
766
    else
766
    else
767
    {
767
    {
768
        //  Multi machine package
768
        //  Multi machine package
769
        //  Scan required target machines artifacts
769
        //  Scan required target machines artifacts
770
        //  Expand from MachType to one or more MachName's
770
        //  Expand from MachType to one or more MachName's
-
 
771
        scanBuilds:
771
        for (Iterator<Platform> ip=platformCollection.iterator(); ip.hasNext(); )
772
        for (Iterator<Platform> ip=platformCollection.iterator(); ip.hasNext(); )
772
        {
773
        {
773
          Platform platform = ip.next();
774
          Platform platform = ip.next();
774
          for (Iterator<Machine> it=ABTData.machineCollection.iterator(); it.hasNext(); )
775
          for (Iterator<Machine> it=ABTData.machineCollection.iterator(); it.hasNext(); )
775
          {
776
          {
Line 777... Line 778...
777
            if (ma.getMachtype().compareTo(platform.getGbe_Machtype()) == 0 )
778
            if (ma.getMachtype().compareTo(platform.getGbe_Machtype()) == 0 )
778
            {
779
            {
779
                fullyPublished = checkPublished( dpkg_archive, ma.getName() );
780
                fullyPublished = checkPublished( dpkg_archive, ma.getName() );
780
                if ( fullyPublished.compareTo("no") == 0 )
781
                if ( fullyPublished.compareTo("no") == 0 )
781
                {
782
                {
-
 
783
                  //  Break out of both loops
-
 
784
                  //  Once we have seen an error we need to retain it.
782
                  break;
785
                  break scanBuilds;
783
                }
786
                }
784
            }
787
            }
785
          }
788
          }
786
        }
789
        }
787
    }
790
    }