spmeesseman / vscode-taskexplorer

Run and Manage Tasks for Visual Studio Code
Other
141 stars 30 forks source link

Makefile task parsed incorrect #149

Closed 0x-jerry closed 3 years ago

0x-jerry commented 3 years ago

My makefile content is:

test:
    deno test --import-map=import_map.json --no-check

test-watch:
    deno test --import-map=import_map.json --no-check --watch

coverage:
    deno test --import-map=import_map.json --no-check --coverage=cov_profile
    deno coverage cov_profile
    rm -rf cov_profile

And generate tasks is:

image

What I expect is: