Skip to content
This repository has been archived by the owner on Nov 19, 2018. It is now read-only.

Commit

Permalink
Merge pull request #595 from ConfusedVorlon/master
Browse files Browse the repository at this point in the history
Fix the default-setting feature.
  • Loading branch information
mfurtak committed Feb 19, 2016
2 parents 34fa85d + 29dcf94 commit 2c602da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/deliver/loader.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Loader
# through it as well searching for language folders.
APPLE_TV_DIR_NAME = "appleTV".freeze
DEFAULT_DIR_NAME = "default".freeze
ALL_LANGUAGES = (FastlaneCore::Languages::ALL_LANGUAGES + [APPLE_TV_DIR_NAME, APPLE_TV_DIR_NAME]).map(&:downcase).freeze
ALL_LANGUAGES = (FastlaneCore::Languages::ALL_LANGUAGES + [APPLE_TV_DIR_NAME, APPLE_TV_DIR_NAME, DEFAULT_DIR_NAME]).map(&:downcase).freeze

def self.language_folders(root)
Dir.glob(File.join(root, '*')).select do |path|
Expand Down

0 comments on commit 2c602da

Please sign in to comment.