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 f081bba commit 56a415eCopy full SHA for 56a415e
.changeset/bright-monkeys-act.md
@@ -0,0 +1,5 @@
1
+---
2
+"task-master-ai": patch
3
4
+
5
+Ensure projectRoot is a string (potential WSL fix)
src/utils/path-utils.js
@@ -25,6 +25,9 @@ import { getLoggerOrDefault } from './logger-utils.js';
25
export function normalizeProjectRoot(projectRoot) {
26
if (!projectRoot) return projectRoot;
27
28
+ // Ensure it's a string
29
+ projectRoot = String(projectRoot);
30
31
// Split the path into segments
32
const segments = projectRoot.split(path.sep);
33
0 commit comments