We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ede30d6 commit ada3214Copy full SHA for ada3214
src/gitpuller.ts
@@ -26,7 +26,7 @@ export abstract class GitPuller {
26
const basePathComponents = basePath.split('/');
27
const basePathPrefixes = [];
28
for (let i = 0; i < basePathComponents.length; i++) {
29
- basePathPrefixes.push(basePathComponents.slice(0, i+1).join('/'));
+ basePathPrefixes.push(basePathComponents.slice(0, i + 1).join('/'));
30
}
31
32
// For a basePath 'a/b/c', create ['a', 'a/b', 'a/b/c']
0 commit comments