diff options
author | Bradley Sepos <[email protected]> | 2018-05-07 17:11:22 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2018-05-07 17:12:18 -0400 |
commit | f1fd5d9848bf9af409925d4c99641786e49c6045 (patch) | |
tree | 92589058ee2effb1cfe8eefebe19c6b2be112aea /scripts | |
parent | 4bbad97f2e1e67e2d75c68f0bd7387ba6014498b (diff) |
scripts: Make mac-toolchain-build dot crawl print only every 15 seconds.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/mac-toolchain-build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mac-toolchain-build b/scripts/mac-toolchain-build index 9755decf7..ac93bf2c5 100755 --- a/scripts/mac-toolchain-build +++ b/scripts/mac-toolchain-build @@ -5,7 +5,7 @@ function display_progress { local str="" while [ "$(ps a | awk '{print $1}' | grep ${1})" ]; do printf "%c" "$str" - sleep 5 + sleep 15 str="." done } |