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 6ce9326 commit 146461fCopy full SHA for 146461f
src/services/taskfile.ts
@@ -73,7 +73,7 @@ class TaskfileService {
73
74
cp.exec(command, { cwd }, (_, stdout: string, stderr: string) => {
75
// If the version is a devel version, ignore all version checks
76
- if (stdout.includes("devel")) {
+ if (stdout.includes("+")) {
77
log.info("Using development version of task");
78
this.version = new semver.SemVer("999.0.0");
79
return resolve("ready");
0 commit comments