NIHVIVO-46 Correct the exit mechanism and add a line of text.

This commit is contained in:
jeb228 2010-03-25 15:28:16 +00:00
parent 8630c36532
commit 20ce5987f9

View file

@ -439,8 +439,10 @@ if File.expand_path($0) == File.expand_path(__FILE__)
l.report
if l.success?
return 0
puts "Licenser was successful."
exit 0
else
return 1
puts "Licenser found problems."
exit 1
end
end