more readable if

This commit is contained in:
Philippe Auriach 2017-10-13 11:13:01 +02:00 committed by GitHub
parent 3043a48131
commit 8781528429

View file

@ -22,10 +22,11 @@ module Twine
path_arr.each do |segment|
match = /^(.+)\.lproj$/.match(segment)
if match
if match[1] != "Base"
if match[1] == "Base"
return @options[:developer_language]
else
return match[1]
end
return @options[:developer_language]
end
end