Skip to content

Commit ada3214

Browse files
authored
Fix code formatting
1 parent ede30d6 commit ada3214

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gitpuller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export abstract class GitPuller {
2626
const basePathComponents = basePath.split('/');
2727
const basePathPrefixes = [];
2828
for (let i = 0; i < basePathComponents.length; i++) {
29-
basePathPrefixes.push(basePathComponents.slice(0, i+1).join('/'));
29+
basePathPrefixes.push(basePathComponents.slice(0, i + 1).join('/'));
3030
}
3131

3232
// For a basePath 'a/b/c', create ['a', 'a/b', 'a/b/c']

0 commit comments

Comments
 (0)