Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

svn add iphone4 icon

Tags:

macos

svn

iphone

I have iPhone4 icons, which are terminated with @2x.png My problem is that when I try to add them to svn with svn add path/[email protected] I get the error:

svn: warning: 'path/myIcon' not found

I suppose that svn or my system do not support the "@" in the path..

What can I do?

I am running Mac OS X 10.6.4 and tried to add it directly with subversion and through svnX (which should and does give the same result). I think the repository is on a linux system.

like image 871
Daniel Avatar asked Nov 21 '25 16:11

Daniel


2 Answers

Add an extra @ at the end.

So svn add path/[email protected]@

like image 139
Gordon Fontenot Avatar answered Nov 23 '25 07:11

Gordon Fontenot


I have had this problem also... my solution was to add them via SCM in Xcode. If you don't have your SCM set up, it's worth doing, IMHO.

like image 21
livingtech Avatar answered Nov 23 '25 08:11

livingtech