Sha256: b10f97bc3276d3332ff444b98288933f8f254b5933fff91c5544eef0ae15364e
Contents?: true
Size: 562 Bytes
Versions: 3
Compression:
Stored size: 562 Bytes
Contents
include IosToolchain::Helpers require "fileutils" namespace :ios do desc 'helpers for dealing with provisiong' namespace :provisioning do desc 'copies provisioning profiles from the repo to the appropriate system location' task :copy do local_profiles_path = File.join(config.provisioning_path, '*') system_profile_path = '~/Library/MobileDevice/Provisioning\ Profiles/' puts "copying provisioning profiles from '#{local_profiles_path}' to '#{system_profile_path}'" system("cp -r #{local_profiles_path} #{system_profile_path}") end end end
Version data entries
3 entries across 3 versions & 1 rubygems