gnunet-svn
[Top][All Lists]
Advanced

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

[gnunet] branch master updated: BUILD: Allow boostrap when offline (if g


From: gnunet
Subject: [gnunet] branch master updated: BUILD: Allow boostrap when offline (if gana files exist)
Date: Sun, 27 Feb 2022 20:55:01 +0100

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

martin-schanzenbach pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new fd1d4df8f BUILD: Allow boostrap when offline (if gana files exist)
fd1d4df8f is described below

commit fd1d4df8fbabf484cbbfda53e2f2936c37b84bc0
Author: Martin Schanzenbach <schanzen@gnunet.org>
AuthorDate: Sun Feb 27 20:54:49 2022 +0100

    BUILD: Allow boostrap when offline (if gana files exist)
---
 bootstrap | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/bootstrap b/bootstrap
index 766eed237..9d31d7ad7 100755
--- a/bootstrap
+++ b/bootstrap
@@ -97,9 +97,9 @@ submodules()
     if ! git --version >/dev/null; then
         echo "git not installed, skipping submodule update"
     else
-        git submodule update --init || exit 1
-        git submodule update --remote --recursive || exit 1
-        git submodule sync || exit 1
+        git submodule update --init && \
+        git submodule update --remote --recursive && \
+        git submodule sync
     fi
 }
 
@@ -112,17 +112,17 @@ gana_update()
       cd gnu-name-system-record-types && \
          make && \
          cp gnu_name_system_record_types.h ../../../src/include/ && \
-         make clean
+         make clean || exit 1
       cd ../gnu-name-system-default-tlds && \
          make && \
          cp tlds.conf ../../../src/gns && \
-         make clean
+         make clean || exit 1
 
       # Signatures
       cd ../gnunet-signatures && \
          make && \
          cp gnunet_signatures.h ../../../src/include && \
-         make clean
+         make clean || exit 1
       cd $cwd
     else
       echo "ERROR: No recutils found! Unable to generate recent GANA headers 
and configs."

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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