We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9e7c86 commit 78cdd34Copy full SHA for 78cdd34
1 file changed
browser/tasks/Transformer.ts
@@ -449,6 +449,11 @@ class Transformer {
449
console.log("igConfig.RepositoryName is" + igConfig.RepositoryName);
450
if (sampleFullPath.indexOf(igConfig.RepositoryName) > -1) {
451
sampleFullPath = sampleFullPath.split(igConfig.RepositoryName)[1];
452
+ /*sampleFullPath = sampleFullPath.substring(
453
+ sampleFullPath.lastIndexOf(igConfig.RepositoryName) +
454
+ igConfig.RepositoryName.length
455
+ );*/
456
+ // sampleFullPath = sampleFullPath.split(igConfig.RepositoryName)[1];
457
console.log("sampleFullPath is now " + sampleFullPath + " and is now split by pathModule.sep " + pathModule.sep);
458
sampleFullPath = sampleFullPath.split(pathModule.sep).join(process.env.PATH_SEP || '/');
459
return ".." + sampleFullPath;
0 commit comments