Fix indentation
authorHugo Villeneuve <hugo@hugovil.com>
Thu, 7 Aug 2014 04:11:37 +0000 (00:11 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Mon, 6 Oct 2014 01:48:16 +0000 (21:48 -0400)
functions/main

index 2460314..e90ce12 100644 (file)
@@ -1146,15 +1146,15 @@ get_total_build_time()
 
     for time in ${TIMES}; do
        HOURS=$(( $HOURS + $(echo ${time} | sed "s!^\([0-9]*\)\..*!\1!g") ))
-       
+
        # The first SED command extracts the minutes (fractions of an hour).
        # The second SED command removed the leading zero, if applicable.
        MIN=$(( $MIN + $(echo ${time} | sed "s!.*\.\([0-9][0-9]\)!\1!g" | sed "s!^0\([0-9]\)!\1!g" ) ))
     done
-    
+
     HOURS=$(( ${HOURS} + ( ${MIN} / 100 ) ))
     MIN=$(( ${MIN} % 100 ))
-    
+
     echo "${HOURS}.${MIN}"
 }