/**
  * Computes the bundle path from the bundle
  *
  * @param bundle
  * @return
  */
 protected String computeBundlePath(final ImportSource.IRepositoryFileBundle bundle) {
   String bundlePath = bundle.getPath();
   bundlePath = RepositoryFilenameUtils.separatorsToRepository(bundlePath);
   if (bundlePath.startsWith(RepositoryFile.SEPARATOR)) {
     bundlePath = bundlePath.substring(1);
   }
   return bundlePath;
 }