new BazaarScmProviderRepository("file:///c:/program files/cygwin/tmp/test").getURI() returns "file://c:\program files\cygwin\tmp\test", which Bazaar rejects as
bzr: ERROR: Invalid url supplied to transport: 'file://c:\\program files\\cygwin\\tmp\\test/': Win32 UNC path urls have form file://HOST/path
Any reason why getURI() method is not implemented as follows?
public String getURI()
{
return orgUrl;
}
Description
new BazaarScmProviderRepository("file:///c:/program files/cygwin/tmp/test").getURI() returns "file://c:\program files\cygwin\tmp\test", which Bazaar rejects as
bzr: ERROR: Invalid url supplied to transport: 'file://c:\\program files\\cygwin\\tmp\\test/': Win32 UNC path urls have form file://HOST/path
Any reason why getURI() method is not implemented as follows?