diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-11-06 03:21:42 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-11-06 03:21:42 +0000 |
commit | 44ac10c68ded7f7804e72cb17d1c5651913de99d (patch) | |
tree | 281f7a643ddc923fdfab12fa49970fcd0bcbbd4d /resources/scripts/helpers/build/roms | |
parent | 8241c45f0d6762729a9f02e41ca04784d210e259 (diff) | |
download | librebootfr-44ac10c68ded7f7804e72cb17d1c5651913de99d.tar.gz librebootfr-44ac10c68ded7f7804e72cb17d1c5651913de99d.zip |
scripts: say ROM images, not ROM's. ROM's is wrong!
Diffstat (limited to 'resources/scripts/helpers/build/roms')
-rwxr-xr-x | resources/scripts/helpers/build/roms/withgrub_helper | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/scripts/helpers/build/roms/withgrub_helper b/resources/scripts/helpers/build/roms/withgrub_helper index c8bcd9c1..3c74ab27 100755 --- a/resources/scripts/helpers/build/roms/withgrub_helper +++ b/resources/scripts/helpers/build/roms/withgrub_helper @@ -133,12 +133,12 @@ done # prepare directory for new ROM images rm -Rf "${boardtarget:?}/" mkdir "${boardtarget}/" -# move the ROM's into the newly created directory +# move the ROM images into the newly created directory mv "${boardtarget}"*.rom "${boardtarget}/" -# delete the old ROM's from ../bin +# delete the old ROM images from ../bin rm -Rf "../bin/grub/${boardtarget}/" -# now put the new ROM's in ./bin/grub/ +# now put the new ROM images in ./bin/grub/ [ ! -d "../bin/grub/" ] && mkdir -p "../bin/grub/" mv "${boardtarget}/" "../bin/grub/" |