We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e27b91a commit c033fd1Copy full SHA for c033fd1
src/commands/installAnalysisCLI.ts
@@ -30,7 +30,7 @@ const execAsync = (command: string) => {
30
return
31
}
32
33
- if (stderr && (!stdout || /error|fail|exception/i.test(stderr))) {
+ if (stderr && !stdout) {
34
reject(new Error(stderr))
35
36
src/commands/runCodacyAnalyze.ts
@@ -50,7 +50,7 @@ export async function runCodacyAnalyze(filePath?: string) {
50
51
52
53
54
Logger.warn(`Codacy CLI V2 warnings: ${stderr}`)
55
56
0 commit comments