Fix to HBIOS/build.sh

When adding files to rom disk, if files were missing, it would error out.

It appears the intent is to skip non-existing files.

Updated to log out correctly for missing files - and continue operation.
This commit is contained in:
Dean Netherton
2020-02-26 16:03:47 +11:00
parent 81c4913c72
commit d211f0977d

View File

@@ -124,8 +124,10 @@ if [ -d ../RomDsk/$platform ] ; then
fi
echo "adding apps to $romdiskfile"
for i in assign fdu format mode osldr rtc survey syscopy sysgen talk timer xm inttest ; do
for i in $Apps ; do
set +e
f=$(../../Tools/unix/casefn.sh ../../Binary/Apps/$i.com)
set -e
if [ -z "$f" ] ; then
echo " " $i "not found"
else