FLEX-35295 - Progress bar to 100% in case of totalBytes 0 which is returned for PowerShell download
diff --git a/flex-installer/installer/src/InstallApacheFlex.mxml b/flex-installer/installer/src/InstallApacheFlex.mxml
index 4f35047..e353f86 100644
--- a/flex-installer/installer/src/InstallApacheFlex.mxml
+++ b/flex-installer/installer/src/InstallApacheFlex.mxml
@@ -3256,6 +3256,10 @@
 
                 progressBar.percent = percentLoaded;
             }
+            else
+            {
+                progressBar.percent = 100;
+            }
         }
 
         private function handleDownloadComplete(event:Event):void