[PATCH] README: check sha256-sums and correct dirname

Wald Commits scm-commit at wald.intevation.org
Thu Apr 10 11:40:51 CEST 2014


# HG changeset patch
# User Tom Gottfried <tom at intevation.de>
# Date 1397122846 -7200
# Node ID 1b6e891113d2b2b8aaad05191a94d81bbbbc90af
# Parent  ea56812aba461103788229d67831481fedcf7753
README: check sha256-sums and correct dirname.

diff -r ea56812aba46 -r 1b6e891113d2 README
--- a/README	Thu Apr 10 08:30:21 2014 +0200
+++ b/README	Thu Apr 10 11:40:46 2014 +0200
@@ -5,16 +5,18 @@
 $ mkdir bootstrap
   cd bootstrap
   wget "https://github.com/twbs/bootstrap/releases/download/v3.1.1/bootstrap-3.1.1-dist.zip"
-  sha256sum bootstrap-3.1.1-dist.zip       
-  77d72e99f947113cd55149900a736bd2c2cbec175ace6dd33c1b3d3fc51cbf81  bootstrap-3.1.1-dist.zip
+  echo "77d72e99f947113cd55149900a736bd2c2cbec175ace6dd33c1b3d3fc51cbf81  bootstrap-3.1.1-dist.zip" | \
+    sha256sum -c
   unzip bootstrap-3.1.1-dist.zip
+  mv bootstrap-3.1.1-dist dist
   cd ..
 
 == jquery 1.x
 
 $ mkdir jquery
   curl https://code.jquery.com/jquery-1.11.0.min.js -o jquery/jquery.min.js
-
+  echo "b294e973896f8f874e90a8eb1a8908ac790980d034c4c4bdf0fc3d37b8abf682  jquery/jquery.min.js" | \
+    sha256sum -c
 
 Ordnerstruktur
 ==============


More information about the Dive4Elements-commits mailing list