We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03ecb5e commit c7b6448Copy full SHA for c7b6448
src/miseService.ts
@@ -347,8 +347,8 @@ export class MiseService {
347
348
try {
349
const { stdout } = await this.cache.execCmd({
350
- command: includeHidden ? "tasks ls --json --hidden" : "tasks ls --json",
351
- });
+ command: includeHidden ? 'tasks ls --all --json --hidden' : 'tasks ls --all --json'
+ })
352
return JSON.parse(stdout);
353
} catch (error: unknown) {
354
if (error instanceof Error && error.message.includes("mise trust")) {
0 commit comments