You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2018/03/09 15:13:07 UTC

[myfaces-tobago] branch master updated: print out build time

This is an automated email from the ASF dual-hosted git repository.

lofwyr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/master by this push:
     new 850c29c  print out build time
850c29c is described below

commit 850c29c7d4f85cf601c677d09202e270d7201b42
Author: Udo Schnurpfeil <lo...@apache.org>
AuthorDate: Fri Mar 9 14:40:58 2018 +0100

    print out build time
    
    TOBAGO-1874: Optimize and cleanup theme building
---
 tobago-theme/rebuild-theme.sh | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tobago-theme/rebuild-theme.sh b/tobago-theme/rebuild-theme.sh
index 0fa27d1..37c8732 100755
--- a/tobago-theme/rebuild-theme.sh
+++ b/tobago-theme/rebuild-theme.sh
@@ -17,6 +17,8 @@
 
 set -e
 
+START=$(date +%s)
+
 REPO=`mvn help:evaluate -Dexpression=settings.localRepository --batch-mode | grep -v '\[INFO\]'`
 echo "Maven repo: ${REPO}"
 REPO_REGEX=`echo ${REPO} | sed s/\\\\//\\\\\\\\\\\\//g`
@@ -55,6 +57,8 @@ rebuild_theme standard &
 
 wait
 
-echo "DONE"
+END=$(date +%s)
+
+echo "DONE in $(($END - $START)) seconds"
 echo "Now you will find the bootstrap stuff inside the src trees. This might be committed."
 echo "Use: git status"

-- 
To stop receiving notification emails like this one, please contact
lofwyr@apache.org.