Skip to content

Commit d9aaac3

Browse files
Add execution time measurement
1 parent b40f470 commit d9aaac3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

deploy.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
* Documentation: https://github.com/Lyquix/php-git-deploy
66
*/
77

8+
// Measure execution time
9+
$time = -microtime(true);
10+
811
// Prevent caching
912
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
1013
header("Cache-Control: post-check=0, pre-check=0", false);
@@ -352,7 +355,7 @@ function cmd($command, $print = true) {
352355
removeLockFile();
353356
?>
354357

355-
Done.
358+
Done in <?php echo $time += microtime(true); ?>sec
356359
</pre>
357360
</body>
358361
</html>

0 commit comments

Comments
 (0)