This commit is contained in:
zyppe 2024-10-04 22:13:58 +08:00
parent 24e3c9cfc4
commit ace0efceee

26
nbuild
View file

@ -17,6 +17,7 @@ use NBuild::Func;
use File::Path qw(rmtree mkpath);
use Sys::Hostname;
use Log::Log4perl;
use File::Path;
=todo
# some VMs do not allow to specify the init process...
@ -107,6 +108,29 @@ EOT
sub cleanup_and_exit {
my ($var, $msg)=@_;
$var=0 unless defined $var;
if(defined )
if(defined $msg){
if($var!=0){
print STDERR $msg;
}
else{
say $msg;
}
}
rmtree $BUILD_DIST_TMP unless undef $BUILD_DIST_TMP;
if(undef $BUILD_OPTIONS_PARSED){
return;
}
rmtree $BUILD_ROOT . '/exit';
if(defined $RUN_SHELL_AFTER_FAIL && $BUILD_SUCCEEDED==0 && $var==1){
undef $BUILD_SUCCEEDED;
}
}
sub fail_exit {
cleanup_and_exit(1,'');
}
sub run_shell {
}