mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:43:15 -06:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user