ALL BUSINESS
COMIDA
DIRECTORIES
EDUCATIONAL
ENTERTAINMENT
FASHION TIPS
FINER THINGS
FREE CREATOR TOOLS
HEALTH
MARKETPLACE
MEMBER's ONLY
MONEY MATTER$
MOTIVATIONAL
NEWS & WEATHER
TECHNOLOGIA
TELEVISION NETWORKS
USA VOTES 2024
VIDEOS
INVESTOR RELATIONS
IN DEVELOPMENT
Posted by - Latinos MediaSyndication -
on - June 17, 2023 -
Filed in - Technology -
-
316 Views - 0 Comments - 0 Likes - 0 Reviews
i have readlink: illegal option -- f error when i'm trying to use product -> archive in xcode ..
i tried to remove the "-f" tag from source="$(readlink -f "${source}")" ... and got Rsync error: some files could not be transferred (code 23)
i tried to add this code to podfile but its not working
post_install do |installer| installer.pods_project.targets.each do |target| shell_script_path = "Pods/Target Support Files/#{target.name}/#{target.name}-frameworks.sh" if File::exists?(shell_script_path) shell_script_input_lines = File.readlines(shell_script_path) shell_script_output_lines = shell_script_input_lines.map { |line| line.sub("source=\"$(readlink \"${source}\")\"", "source=\"$(readlink -f \"${source}\")\"") } File.open(shell_script_path, 'w') do |f| shell_script_output_lines.each do |line| f.write line end end end end
Note: i'm using mac m1 and the application works well on simulator