Skip to content

Commit

Permalink
Update error message when PHPStan Pro fails to launch
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderRonde committed Jun 28, 2024
1 parent 819d35c commit 79044d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/lib/phpstan/pro/pro.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 79044d6

Please sign in to comment.