Closed Maxwell-Lyu closed 4 years ago
The sugestions are tried locally, by modifying taskProviderMake.js
under .vscode/extensions/spmeesseman.vscode-taskexplorer-1.24.0/out
The same Makefile is now correctly parsed
:tada: This issue has been resolved in version 1.24.2 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
Sidebar showing false targets
The Makefile that triggers the bug:
The line that is treated as a target:
Possible cause
In file
taskProviderMake.ts
, line 167:the
.trim()
trims off '\t' and ' ' from both ends of the line, making the following condition:not working
Suggestion: in
taskProviderMake.ts
I'm still working on it. :(Filter for variable definition:
Add condition to line 182:
tgtName.indexOf("=") === -1
Remove
.trim()
from line 167, then the 'if' will work