[openssl-commits] [web] master update

Rich Salz rsalz at openssl.org
Thu Jan 15 17:54:25 UTC 2015


The branch master has been updated
       via  154528219e1c1c7a63e31dfe0ba71957e83910a8 (commit)
      from  4114de7dcffc5d142445eb32445437c39d4a8fd3 (commit)


- Log -----------------------------------------------------------------
commit 154528219e1c1c7a63e31dfe0ba71957e83910a8
Author: Rich Salz <rsalz at akamai.com>
Date:   Thu Jan 15 12:54:18 2015 -0500

    add sudo check to relupd

-----------------------------------------------------------------------

Summary of changes:
 Makefile |    1 +
 1 file changed, 1 insertion(+)

diff --git a/Makefile b/Makefile
index 11d90c9..404248c 100644
--- a/Makefile
+++ b/Makefile
@@ -31,6 +31,7 @@ generated:
 
 # Update release notes (and other items, but relnotes is the use-case)
 relupd:
+	id | grep -q root || { echo you must sudo ; exit 1; }
 	( cd $(SNAP)/.. ; for dir in openssl* ; do \
 		echo Updating $$dir ; cd $$dir ; sudo -u openssl git pull $(QUIET) ; cd .. ; \
 		done )


More information about the openssl-commits mailing list