Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/twine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/twine/formatters/apple.rb')
-rw-r--r--lib/twine/formatters/apple.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/twine/formatters/apple.rb b/lib/twine/formatters/apple.rb
index 44ce7a4..5233cb1 100644
--- a/lib/twine/formatters/apple.rb
+++ b/lib/twine/formatters/apple.rb
@@ -22,7 +22,9 @@ 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
end