diff options
author | Joseph Michael Thompson <jmt@josepht.me> | 2015-04-10 15:15:07 -0400 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-04-10 21:53:18 +0100 |
commit | 1360aae9a0caae69fe468a0832c01dfaa2563faa (patch) | |
tree | 740dace72e7b53500f60759af0f6b1388fe5e335 /resources/scripts/helpers/download/memtest86plus | |
parent | 57444b1c8bbe6169cd536c67591e276ad4910b71 (diff) | |
download | librebootfr-1360aae9a0caae69fe468a0832c01dfaa2563faa.tar.gz librebootfr-1360aae9a0caae69fe468a0832c01dfaa2563faa.zip |
trim a few long lines, eliminate/add trailing newlines for consistency
Diffstat (limited to 'resources/scripts/helpers/download/memtest86plus')
-rwxr-xr-x | resources/scripts/helpers/download/memtest86plus | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/resources/scripts/helpers/download/memtest86plus b/resources/scripts/helpers/download/memtest86plus index 7424aab3..99fc3c4c 100755 --- a/resources/scripts/helpers/download/memtest86plus +++ b/resources/scripts/helpers/download/memtest86plus @@ -28,14 +28,14 @@ set -u -e # Get the last version of MemTest86+ used, apply patches, build it. # Remove the old version that may exist -# ---------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------ printf "Downloading MemTest86+\n" rm -rf "memtest86+-5.01" # Get latest memtest86+: -# ---------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------ # download it using wget wget http://www.memtest.org/download/5.01/memtest86+-5.01.tar.gz @@ -50,7 +50,7 @@ rm -f "memtest86+-5.01.tar.gz" cd "memtest86+-5.01"/ # Apply necessary patches -# --------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------ # place the right config rm -f config.h @@ -69,4 +69,3 @@ printf "\n\n" # ------------------- DONE ---------------------- - |