http://bugzilla.wpkg.org/show_bug.cgi?id=123
Peter Hoeg <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|CLOSED |REOPENED CC| |[email protected] Resolution|FIXED | --- Comment #5 from Peter Hoeg <[email protected]> --- I have this very problem with WPKG Client 1.3.14 and WPKG 1.2. Specifically the following install stanza will simply hang until timeout: <install cmd='%COMSPEC% /C FOR /L %I IN (10,1,27) DO msiexec %MSI% /x {26A24AE4-039D-4CA4-87B4-2F832160%IFF}'> <exit code='1605' /></install> While this one works without problems: <install cmd='%COMSPEC% /C FOR /L %I IN (10,1,26) DO msiexec %MSI% /x {26A24AE4-039D-4CA4-87B4-2F832160%IFF}'> <exit code='1605' /></install> So adding one more iteration makes WPKG hang. If I split it up like this it also works: <install cmd='%COMSPEC% /C FOR /L %I IN (10,1,20) DO msiexec %MSI% /x {26A24AE4-039D-4CA4-87B4-2F832160%IFF}'> <exit code='1605' /></install> <install cmd='%COMSPEC% /C FOR /L %I IN (21,1,27) DO msiexec %MSI% /x {26A24AE4-039D-4CA4-87B4-2F832160%IFF}'> <exit code='1605' /></install> -- Configure bugmail: http://bugzilla.wpkg.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. ------------------------------------------------------------------------- wpkg-users mailing list archives >> http://lists.wpkg.org/pipermail/wpkg-users/ _______________________________________________ wpkg-users mailing list [email protected] http://lists.wpkg.org/mailman/listinfo/wpkg-users
