do not stop if error from building cfm dist files, continue as long as one was built

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4741 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
lissav 2009-12-08 19:49:50 +00:00
parent 94b00e9c27
commit 69a8be9d85

View File

@ -71,8 +71,8 @@ if (!($output))
}
# call cfmupdatenode and build cfm distribution files
$rc = &buildcfmdistfiles($input);
if ($rc == 0)
&buildcfmdistfiles($input);
if (-e ($input)) # if anything built
{
# build the xcat sync files
@ -89,7 +89,7 @@ if ($rc == 0)
}
else
{
print " Error building CFM dist files.\n";
print " Error building CFM dist files, or nothing to do.\n";
}
exit 0;