diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-02-10 15:48:49 +0000 |
---|---|---|
committer | Raphaƫl Hertzog <hertzog@debian.org> | 2020-03-05 11:29:01 +0000 |
commit | 36a3ba76347ef72df1c316312ed3a26aa4b0c816 (patch) | |
tree | 1777349053ca63a9cb543230289b2c1f65778a5c /scripts/build/grub-cpmodules | |
parent | a96107a3f124cdbeecb3fb6d4a13f3dc7cb62ea7 (diff) | |
download | vyos-live-build-36a3ba76347ef72df1c316312ed3a26aa4b0c816.tar.gz vyos-live-build-36a3ba76347ef72df1c316312ed3a26aa4b0c816.zip |
fix indentation
including:
- spaces replaced with tabs for consistency
- alignment of `;;` in some case statements changed for consistency
Gbp-Dch: Short
Closes: #952857
Diffstat (limited to 'scripts/build/grub-cpmodules')
-rwxr-xr-x | scripts/build/grub-cpmodules | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/scripts/build/grub-cpmodules b/scripts/build/grub-cpmodules index 437ebdf2b..4f9e26acc 100755 --- a/scripts/build/grub-cpmodules +++ b/scripts/build/grub-cpmodules @@ -37,18 +37,18 @@ for x in "/usr/lib/grub/$platform"/*.mod; do # dependencies. It would be nice to have a way to read the module # list directly out of the image. case $(basename "$x" .mod) in - configfile|fshelp|iso9660|memdisk|search|search_fs_file|search_fs_uuid|search_label|tar) - # included in boot image - ;; - affs|afs|afs_be|befs|befs_be|minix|nilfs2|sfs|zfs|zfsinfo) - # unnecessary filesystem modules - ;; - example_functional_test|functional_test|hello) - # other cruft - ;; - *) - cp -a "$x" "$outdir/boot/grub/$platform/" - ;; + configfile|fshelp|iso9660|memdisk|search|search_fs_file|search_fs_uuid|search_label|tar) + # included in boot image + ;; + affs|afs|afs_be|befs|befs_be|minix|nilfs2|sfs|zfs|zfsinfo) + # unnecessary filesystem modules + ;; + example_functional_test|functional_test|hello) + # other cruft + ;; + *) + cp -a "$x" "$outdir/boot/grub/$platform/" + ;; esac done |