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 8923fbe commit 95bbca8Copy full SHA for 95bbca8
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## Unreleased
4
+
5
+- Fixed some installations (e.g. Brew) not detecting the Task version correctly (#13, #14 by @pd93).
6
7
## v0.1.0 - 2023-03-26
8
9
- View tasks in the sidebar.
src/services/taskfile.ts
@@ -108,7 +108,7 @@ class TaskfileService {
108
109
parseVersion(stdout: string): semver.SemVer | undefined {
110
// Extract the version string from the output
111
- let matches = stdout.match(/v(\d+\.\d+\.\d+)/);
+ let matches = stdout.match(/(\d+\.\d+\.\d+)/);
112
if (!matches || matches.length !== 2) {
113
return undefined;
114
}
0 commit comments