diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2018-03-11 22:49:57 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2018-04-07 22:31:59 -0400 |
commit | 2d4f3a85878998f3c934adf3bc5daea78ba3d205 (patch) | |
tree | 6373aa92eb7874fc927ec731b0b078924d95e45e /projects/grub/grub-helper | |
parent | 6519ab6ddccf6804efb16548bef4e47ece735015 (diff) | |
download | librebootfr-2d4f3a85878998f3c934adf3bc5daea78ba3d205.tar.gz librebootfr-2d4f3a85878998f3c934adf3bc5daea78ba3d205.zip |
Be specific about size limit for floppy GRUB image
Diffstat (limited to 'projects/grub/grub-helper')
-rwxr-xr-x | projects/grub/grub-helper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/grub/grub-helper b/projects/grub/grub-helper index 0ffa8e27..596f7d96 100755 --- a/projects/grub/grub-helper +++ b/projects/grub/grub-helper @@ -184,7 +184,7 @@ grub_build_floppy_image() { mv "$tempfile" "$grubimg" else printf '\n%s' "Error: Image ${grubimg##*/} is too large; " 1>&2 - printf '%s\n\n' "it must be less than ${size}KiB in size" 1>&2 + printf '%s\n\n' "it must be less than ${floppy_size}KiB in size" 1>&2 return 1 fi |