diff --git a/utilities/release-tools/licenser.rb b/utilities/release-tools/licenser.rb index 9daba137..e6254b25 100644 --- a/utilities/release-tools/licenser.rb +++ b/utilities/release-tools/licenser.rb @@ -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