|
|
@@ -38,9 +38,12 @@ public class AppBuildSupplier implements Supplier<BuildLog> {
|
|
|
|
|
|
start = System.currentTimeMillis();
|
|
|
String localPath = appBuilder.pack();
|
|
|
+ buildLog.getBuildTime().setPackTotalTime(System.currentTimeMillis()-start);
|
|
|
+
|
|
|
+ start = System.currentTimeMillis();
|
|
|
String packagePath = appBuilder.push(localPath);
|
|
|
buildLog.setPackagePath(packagePath);
|
|
|
- buildLog.getBuildTime().setPackTotalTime(System.currentTimeMillis()-start);
|
|
|
+ buildLog.getBuildTime().setPushTotalTime(System.currentTimeMillis()-start);
|
|
|
} catch (Exception e) {
|
|
|
buildException(buildLog, e);
|
|
|
return buildLog;
|