We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 554ca51 + b1e7e07 commit 350da10Copy full SHA for 350da10
src/extension.ts
@@ -98,7 +98,11 @@ export async function activate(context: vscode.ExtensionContext) {
98
(vscode.env.appName.toLowerCase().includes('code') && !!vscode.extensions.getExtension('GitHub.copilot'))
99
)
100
101
- await vscode.commands.executeCommand('setContext', 'codacy:canInstallCLI', os.platform() === 'darwin')
+ await vscode.commands.executeCommand(
102
+ 'setContext',
103
+ 'codacy:canInstallCLI',
104
+ os.platform() === 'darwin' || os.platform() === 'linux'
105
+ )
106
107
Config.init(context)
108
0 commit comments