Skip to content

Commit

Permalink
chore: fastlane
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Oct 23, 2024
1 parent d975ea4 commit e1163fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -513,9 +513,9 @@ platform :android do
system 'mkdir', '-p', metadata_dir
files = []
metadata_languages.each { |lang|
changelogFolderPath = File.join(metadata_dir, lang, "changelogs")
changelogFolderPath = File.join(metadata_dir, "changelogs", lang)
if (Dir.exist?(changelogFolderPath))
changelogFilePath = File.join(changelogFolderPath, lang, "#{version}.txt")
changelogFilePath = File.join(changelogFolderPath, "#{version}.txt")
writeFileIfNotExist(changelogFilePath, changelog)
files.push(changelogFilePath)
end
Expand Down

0 comments on commit e1163fa

Please sign in to comment.