Browse Source

Why it is nice to test on uml, if genext2fs isn't in path and filesystem type

is changed, path can't be found .. now it makes an exception when executable
is genext2fs.
master
freesource 23 years ago
parent
commit
74c3318cbf
  1. 7
      BootRoot/YardBox.pm

7
BootRoot/YardBox.pm

@ -309,8 +309,11 @@ sub file_system {
# Check to see if it actually exists # Check to see if it actually exists
my $executable = (split(/\s+/,$entry[2]))[0]; my $executable = (split(/\s+/,$entry[2]))[0];
if (!find_file_in_path(basename($executable))) { if (!find_file_in_path(basename($executable))) {
error_window("gBootRoot: ERROR: Enter a valid command"); if ( $executable ne "genext2fs" ) {
return; error_window
("gBootRoot: ERROR: Enter a valid command");
return;
}
} }
if ($executable =~ m,/,) { if ($executable =~ m,/,) {
if (! -e $executable) { if (! -e $executable) {

Loading…
Cancel
Save