Index: /CKReleaser/trunk/_source/includes/releaser.js
===================================================================
--- /CKReleaser/trunk/_source/includes/releaser.js	(revision 7092)
+++ /CKReleaser/trunk/_source/includes/releaser.js	(revision 7093)
@@ -462,4 +462,9 @@
 					runCommand( "svn", "info", CKRELEASER.sourceDir, o );
 
+					// SVN may throw an error if path ends in ".."
+					if ( o.output.indexOf( "unsupported for this operation" ) != -1 ) {
+						runCommand( "svn", "info", sourceDir.getCanonicalPath(), o );
+					}
+
 					if ( o.output.indexOf( "Revision:" ) != -1 )
 						CKRELEASER.revisionNumber = parseInt( regexLib.packagerRev.matcher( o.output ).replaceAll( '$1' ) );
