add missing shebangs to temp generated shell code files

Closes: #952863
This commit is contained in:
Lyndon Brown 2020-02-22 14:36:58 +00:00
parent 7fb46c464b
commit 5c3679c882
3 changed files with 4 additions and 0 deletions

View File

@ -285,6 +285,7 @@ if [ "${LB_FIRST_BOOTLOADER}" = "grub" ]
then
cat > chroot/grub.sh << EOF
#!/bin/sh
cd binary.tmp
grub --batch << EOM
find /live/vmlinuz
@ -298,6 +299,7 @@ EOF
echo "WAITING..." && read WAIT
#cat > chroot/grub.sh << EOF
#!/bin/sh
#grub --batch << EOM
#root $rootpartition
#setup $hdddev

View File

@ -678,6 +678,7 @@ then
esac
cat > chroot/binary.sh << EOF
#!/bin/sh
cd /root/binary && apt-ftparchive \
-o APT::FTPArchive::Release::Origin="Debian" \
-o APT::FTPArchive::Release::Label="Debian" \

View File

@ -105,6 +105,7 @@ XORRISO_OPTIONS="${XORRISO_OPTIONS} --modification-date=$(date --utc --date="@${
mv source chroot
cat > chroot/source.sh << EOF
#!/bin/sh
xorriso ${XORRISO_OPTIONS} -o source.iso source
EOF