From 516d5ae814574a5ed3abea099298ab6039d8af8e Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Mon, 16 Sep 2024 11:19:36 -0500 Subject: [PATCH] fix: update outdated message about TSM_DIRS --- src/project.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/project.nim b/src/project.nim index 0d80daa..33ea382 100644 --- a/src/project.nim +++ b/src/project.nim @@ -111,7 +111,7 @@ proc findProjects*(open: bool = false): seq[Project] = result = sessions.toSeq().mapIt(newUnknownProject(it)) & result if len(result) == 0: - termError "nothing to select, check your [yellow]$TSM_DIRS" + termError "nothing to select, check your [yellow]$TSM_PATHS" termEcho "searched these directories: " echo getTsmDirs().mapIt(" " & it).join("\n") quit QuitFailure