views:

85

answers:

3

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.

+2  A: 

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.

livingtech
+6  A: 

Add an extra @ at the end.

So svn add path/[email protected]@

Gordon Fontenot
A: 

Add an extra @ at the end of the filename (see http://stackoverflow.com/questions/757435/how-to-escape-characters-in-subversion-managed-file-names).

Richard Fearn