Skip to content

Commit

Permalink
fix: vscode tasks group separtors fixed by last check-in. [fixes #147]
Browse files Browse the repository at this point in the history
  • Loading branch information
spmeesseman committed Jun 6, 2021
1 parent a68166e commit f5d5b32
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/tree/tree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -753,16 +753,7 @@ export class TaskTreeDataProvider implements TreeDataProvider<TreeItem>
{
taskFile.insertTreeNode(n, numGrouped++);
if (!atMaxLevel)
{ //
// TODO !!!
// Ref ticket #133
// VSCode Tasks - Bug, something to do with "relativepath" of the acutal task being empty,
// but in this extension we use /.vcsode as the path, cant go deeper then one level, for
// now until I can find time to look at more
//
if (n.taskSource === "Workspace") {
continue;
}
{
await this.createTaskGroupingsBySep(folder, n, subfolders, treeLevel + 1, logPad + " ");
}
}
Expand Down

0 comments on commit f5d5b32

Please sign in to comment.