diff options
author | Joseph Michael Thompson <jmt@josepht.me> | 2015-04-10 10:34:13 -0400 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-04-10 16:34:17 +0100 |
commit | 57444b1c8bbe6169cd536c67591e276ad4910b71 (patch) | |
tree | 6792d84245cb7e5348e76c7dec377977d7ef1916 /resources | |
parent | 1e9f5fbb97d7ea9db8c34d92cc5fed9c3709f11f (diff) | |
download | librebootfr-57444b1c8bbe6169cd536c67591e276ad4910b71.tar.gz librebootfr-57444b1c8bbe6169cd536c67591e276ad4910b71.zip |
Add "-z" for properly gunzipping a .tar.gz file
Diffstat (limited to 'resources')
-rwxr-xr-x | resources/scripts/helpers/download/memtest86plus | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/scripts/helpers/download/memtest86plus b/resources/scripts/helpers/download/memtest86plus index 8b649b4f..7424aab3 100755 --- a/resources/scripts/helpers/download/memtest86plus +++ b/resources/scripts/helpers/download/memtest86plus @@ -3,6 +3,7 @@ # helper script: Downloads MemTest86+ and patches it # # Copyright (C) 2014, 2015 Francis Rowe <info@gluglug.org.uk> +# Copyright (C) 2015 Joseph Michael Thompson <jmt@josepht.me> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -40,7 +41,7 @@ rm -rf "memtest86+-5.01" wget http://www.memtest.org/download/5.01/memtest86+-5.01.tar.gz # extract it -tar -xf "memtest86+-5.01.tar.gz" +tar -xzf "memtest86+-5.01.tar.gz" # delete the tar file (no longer needed) rm -f "memtest86+-5.01.tar.gz" |