gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnunet] branch master updated: bootstrap: no need for sleep.


From: gnunet
Subject: [gnunet] branch master updated: bootstrap: no need for sleep.
Date: Sun, 17 Nov 2019 01:45:37 +0100

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new ae07ba8f0 bootstrap: no need for sleep.
ae07ba8f0 is described below

commit ae07ba8f0ec093148aaf4c8d841e118719addcd3
Author: ng0 <address@hidden>
AuthorDate: Sun Nov 17 00:42:40 2019 +0000

    bootstrap: no need for sleep.
---
 bootstrap | 33 ++++++++++++++-------------------
 1 file changed, 14 insertions(+), 19 deletions(-)

diff --git a/bootstrap b/bootstrap
index af4f4d01f..1160ab13c 100755
--- a/bootstrap
+++ b/bootstrap
@@ -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
 }
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]