Method: FastlaneCore::ProvisioningProfile.profiles_path

Defined in:
fastlane_core/lib/fastlane_core/provisioning_profile.rb

.profiles_pathObject



75
76
77
78
79
80
81
82
83
# File 'fastlane_core/lib/fastlane_core/provisioning_profile.rb', line 75

def profiles_path
  path = File.expand_path("~") + "/Library/MobileDevice/Provisioning Profiles/"
  # If the directory doesn't exist, create it first
  unless File.directory?(path)
    FileUtils.mkdir_p(path)
  end

  return path
end