[script] update license display

This commit is contained in:
Daniel Khamsing 2016-07-28 13:42:39 -07:00
parent 062c4ee47f
commit 049b22794c
1 changed files with 3 additions and 2 deletions

View File

@ -85,8 +85,9 @@ def output_apps(apps)
details_list.push "Added #{formatted_date}"
end
unless license.nil?
details_list.push "License: [`#{license}`](http://choosealicense.com/licenses/#{license}/)" if license != 'other'
unless license.nil?
license_display = license=='other'? "`#{license}`" : "[`#{license}`](http://choosealicense.com/licenses/#{license}/)"
details_list.push "License: #{license_display}"
end
unless homepage.nil?