Skip to content

Resolve symlink of the matlab executable when finding install path #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/providers/linting/LintingSupportProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import ConfigurationManager from '../../lifecycle/ConfigurationManager'
import { MatlabConnection } from '../../lifecycle/MatlabCommunicationManager'
import MatlabLifecycleManager from '../../lifecycle/MatlabLifecycleManager'
import Logger from '../../logging/Logger'
import * as fs from 'fs/promises'
import * as path from 'path'
import which = require('which')
import { MatlabLSCommands } from '../lspCommands/ExecuteCommandProvider'
Expand Down Expand Up @@ -337,8 +338,9 @@ class LintingSupportProvider {
} else {
// Try to find the executable based on the location of the `matlab` executable
try {
const resolvedPath = await which('matlab')
let resolvedPath = await which('matlab')
if (resolvedPath !== '') {
resolvedPath = await fs.realpath(resolvedPath)
binPath = path.dirname(resolvedPath)
}
} catch {
Expand Down