1
0
mirror of https://github.com/fspc/gbootroot.git synced 2025-02-22 16:43:23 -05:00

Improved an error output for missing bins.

This commit is contained in:
freesource 2001-07-25 04:57:24 +00:00
parent 13457646c8
commit 846dc5647d

View File

@ -2049,6 +2049,9 @@ sub initrd {
foreach (@initrd_stuff) {
($path,$value) = stripper(find_file_in_path($_),"bin");
$value == 0 ? ($tool = "cp -a") : ($tool = "mv");
if (!$path) {
info(1,"gBootRoot Error: Couldn't find $_\n");
}
return if errcp(sys("$tool $path $tmp/initrd_mnt/bin")) == 2;
}