diff options
author | ng0 <ng0@n0.is> | 2019-11-17 00:42:40 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2019-11-17 00:42:40 +0000 |
commit | ae07ba8f0ec093148aaf4c8d841e118719addcd3 (patch) | |
tree | f3d9248b1cba38d8c1265e824ca29f46294cd9ff /bootstrap | |
parent | 5cb82d92ddbec05b22e630c4082456ad8d2b34be (diff) |
bootstrap: no need for sleep.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 33 |
1 files changed, 14 insertions, 19 deletions
@@ -23,9 +23,7 @@ check_uncrustify() { if existence uncrustify; then echo "Installing uncrustify hook and configuration" - # Install uncrustify format symlink (if possible) ln -s contrib/uncrustify.cfg uncrustify.cfg 2> /dev/null - # Install pre-commit hook (if possible) ln -s ../../contrib/uncrustify_precommit .git/hooks/pre-commit 2> /dev/null else echo "Uncrustify not detected, hook not installed." @@ -38,17 +36,17 @@ check_uncrustify() check_yapf() { if existence yapf || \ - existence yapf3.0 || \ - existence yapf3.1 || \ - existence yapf3.2 || \ - existence yapf3.3 || \ - existence yapf3.4 || \ - existence yapf3.5 || \ - existence yapf3.6 || \ - existence yapf3.7 || \ - existence yapf3.8 || \ - existence yapf3.9 || \ - existence yapf4.0; then + existence yapf3.0 || \ + existence yapf3.1 || \ + existence yapf3.2 || \ + existence yapf3.3 || \ + existence yapf3.4 || \ + existence yapf3.5 || \ + existence yapf3.6 || \ + existence yapf3.7 || \ + existence yapf3.8 || \ + existence yapf3.9 || \ + existence yapf4.0; then echo "Installing yapf symlink" ln -s contrib/conf/.style.yapf 2> /dev/null else @@ -61,9 +59,9 @@ check_libtool() echo "checking for libtoolize / libtool... " if existence libtool || \ - existence libtoolize || \ - existence glibtoolize || \ - existence slibtool; then + existence libtoolize || \ + existence glibtoolize || \ + existence slibtool; then autoreconf -if . "bin/pogen.sh" else @@ -75,11 +73,8 @@ check_libtool() main() { cleanup - sleep 1 check_uncrustify - sleep 1 check_yapf - sleep 1 check_libtool } |