Skip to content

Commit

Permalink
Update Fastfile
Browse files Browse the repository at this point in the history
  • Loading branch information
billybooth authored Feb 13, 2024
1 parent 6b93030 commit 9a37bbe
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -256,19 +256,19 @@ platform :ios do
app_identifier: [],
)

find / -name match_version.txt
#find / -name match_version.txt

UI.success "decrypting repo!"
storage = Match::Storage.for_mode("git", { git_url: git_url, shallow_clone: shallow_clone, git_branch: branch, clone_branch_directly: true})
storage.download
encryption = Match::Encryption.for_storage_mode("git", { git_url: git_url, working_directory: storage.working_directory})
encryption.decrypt_files
#UI.success "decrypting repo!"
#storage = Match::Storage.for_mode("git", { git_url: git_url, shallow_clone: shallow_clone, git_branch: branch, clone_branch_directly: true})
#storage.download
#encryption = Match::Encryption.for_storage_mode("git", { git_url: git_url, working_directory: storage.working_directory})
#encryption.decrypt_files

files = []
iterate(storage.working_directory) do |current|
files << current
UI.success("found '#{File.basename(current)}'")
end
#files = []
#iterate(storage.working_directory) do |current|
# files << current
# UI.success("found '#{File.basename(current)}'")
#end
end

desc "Nuke Certs"
Expand Down

0 comments on commit 9a37bbe

Please sign in to comment.