diff options
| author | Joshua Boniface <joshua@boniface.me> | 2019-01-21 16:31:42 -0500 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2019-01-21 16:34:53 -0500 |
| commit | e30cf63aefbb293f742cfe4b9949f72241ca98af (patch) | |
| tree | e3fcc3f4a8fe5a7bda8068d2edeeefd2922ee2f1 | |
| parent | 571afa4fe2322796e172ce5b7214a18ff52696da (diff) | |
Add helpful time text around platform builds
| -rwxr-xr-x | build | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -191,6 +191,7 @@ popd pushd deployment/ for target_platform in ${platform[@]}; do echo -e "> Processing platform ${target_platform}" + date_start=$( date +%s ) pushd ${target_platform} for target_action in ${action[@]}; do echo -e ">> Processing action ${target_action}" @@ -209,6 +210,8 @@ for target_platform in ${platform[@]}; do ./clean.sh fi fi + date_end=$( date +%s ) + echo -e "> Completed platform ${target_platform} in $( expr ${date_end} - ${date_start} ) seconds." popd done popd |
