diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-06-11 01:30:48 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-06-11 01:30:48 +0100 |
commit | 12c50f7939c02db85f05830c4b9fccf464b3977a (patch) | |
tree | 42c0b72ee957cc2f70b442cefb14923b06cb8507 /resources/scripts/helpers/download/grub | |
parent | 34270811fce1ecf0bcf3b1363b0dc3dbf284ab09 (diff) | |
download | librebootfr-12c50f7939c02db85f05830c4b9fccf464b3977a.tar.gz librebootfr-12c50f7939c02db85f05830c4b9fccf464b3977a.zip |
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/grub')
-rwxr-xr-x | resources/scripts/helpers/download/grub | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/scripts/helpers/download/grub b/resources/scripts/helpers/download/grub index e35d7318..70835f22 100755 --- a/resources/scripts/helpers/download/grub +++ b/resources/scripts/helpers/download/grub @@ -31,7 +31,7 @@ set -u -e printf "Downloading GRUB\n" -rm -Rf grub +rm -Rf "grub/" # Get latest GRUB # ------------------------------------------------------------------------------ @@ -40,7 +40,7 @@ rm -Rf grub git clone git://git.savannah.gnu.org/grub.git # modifications are required -cd grub +cd "grub/" # Reset to the last commit that was tested # ------------------------------------------------------------------------------ @@ -58,7 +58,7 @@ git am "../resources/grub/patch/0001-grub-core-normal-main.c-Display-FREE-AS-IN- # https://people.torproject.org/~lunar/volatile/2015-03-17-e3Yp1d7FifQ/0001-lib-syslinux_parse-add-support-for-vesa-menu.c32.patch git am "../resources/grub/patch/0002-lib-syslinux_parse-add-support-for-vesa-menu.c32.patch" -cd ../ +cd "../" printf "\n\n" # ------------------- DONE ---------------------- |