We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03b1544 commit cb33080Copy full SHA for cb33080
index.js
@@ -124,10 +124,11 @@ class PkgPyFuncs {
124
125
if(countErrorNewLines < 2 && errorText.toLowerCase().includes('git clone')){
126
// Ignore false positive due to pip git clone printing to stderr
127
+ } else if(errorText.toLowerCase().includes('warning') && !errorText.toLowerCase().includes('error')){
128
+ // Ignore warnings
129
} else if(errorText.toLowerCase().includes('docker')){
130
console.log('stdout:', out)
131
this.error("Docker Error Detected")
-
132
} else {
133
// Error is not false positive,
134
console.log('___ERROR DETECTED, BEGIN STDOUT____\n', out)
0 commit comments