diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-06-10 20:30:48 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-06-10 20:30:48 (EDT) |
commit | 12c50f7939c02db85f05830c4b9fccf464b3977a (patch) | |
tree | 42c0b72ee957cc2f70b442cefb14923b06cb8507 /resources/scripts/helpers/download/memtest86plus | |
parent | 34270811fce1ecf0bcf3b1363b0dc3dbf284ab09 (diff) | |
download | libreboot-12c50f7939c02db85f05830c4b9fccf464b3977a.zip libreboot-12c50f7939c02db85f05830c4b9fccf464b3977a.tar.gz libreboot-12c50f7939c02db85f05830c4b9fccf464b3977a.tar.bz2 |
all script: use a standard style
Based on the style used for the script in
resources/scripts/helpers/build/release/
Diffstat (limited to 'resources/scripts/helpers/download/memtest86plus')
-rwxr-xr-x | resources/scripts/helpers/download/memtest86plus | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/resources/scripts/helpers/download/memtest86plus b/resources/scripts/helpers/download/memtest86plus index 9fa20dd..c478122 100755 --- a/resources/scripts/helpers/download/memtest86plus +++ b/resources/scripts/helpers/download/memtest86plus @@ -32,7 +32,7 @@ set -u -e printf "Downloading MemTest86+\n" -rm -Rf "memtest86+-5.01" +rm -Rf "memtest86+-5.01/" # Get latest memtest86+: # ------------------------------------------------------------------------------ @@ -47,23 +47,23 @@ tar -xzf "memtest86+-5.01.tar.gz" rm -f "memtest86+-5.01.tar.gz" # there are modifications required -cd "memtest86+-5.01"/ +cd "memtest86+-5.01/" # Apply necessary patches # ------------------------------------------------------------------------------ # place the right config -rm -f config.h -cp ../resources/memtest86/patch/config.h . +rm -f "config.h" +cp "../resources/memtest86/patch/config.h" . # place the right Makefile -rm -f Makefile -cp ../resources/memtest86/patch/Makefile . +rm -f "Makefile" +cp "../resources/memtest86/patch/Makefile" . # (diff them with defaults to see what changed) # we're done -cd ../ +cd "../" printf "\n\n" |