From 79044d63af783d893168eacbf062fa442e701975 Mon Sep 17 00:00:00 2001 From: Sander Ronde Date: Sat, 29 Jun 2024 00:01:19 +0200 Subject: [PATCH] Update error message when PHPStan Pro fails to launch --- server/src/lib/phpstan/pro/pro.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/lib/phpstan/pro/pro.ts b/server/src/lib/phpstan/pro/pro.ts index 4ae975b..618e984 100644 --- a/server/src/lib/phpstan/pro/pro.ts +++ b/server/src/lib/phpstan/pro/pro.ts @@ -93,7 +93,7 @@ export async function launchPro( if (!folderExists) { resolve( ReturnResult.error( - 'Failed to launch PHPStan Pro (tmp folder does not exist)' + `Failed to launch PHPStan Pro (tmp folder does not exist: "${configDirPath}"). Does the \`phpstan.tmpDir\` setting match the tmpDir in your config file?` ) ); } else {