Browse Source

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.
pull/92/head
Dean Netherton 6 years ago
parent
commit
d211f0977d
  1. 4
      Source/HBIOS/Build.sh

4
Source/HBIOS/Build.sh

@ -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

Loading…
Cancel
Save