This repository was archived by the owner on May 21, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change
1
+ ### ` 2.0.19 `
2
+
3
+ - fixed broken subprocess handling
4
+
5
+ ### ` 2.0.18 `
6
+
7
+ - fixed broken subprocess handling
8
+
1
9
### ` 2.0.17 `
2
10
3
11
- fixed reported command injection vulnerability.
Original file line number Diff line number Diff line change 26
26
logging .captureWarnings (True )
27
27
28
28
29
- version = VERSION = __version__ = '2.0.17 '
29
+ version = VERSION = __version__ = '2.0.19 '
30
30
31
31
COLOR = True
32
32
@@ -181,8 +181,9 @@ def check_output(cmd, **popen_args):
181
181
def try_to_run (cmd , shell = False , cwd = None ):
182
182
try :
183
183
return check_output (cmd , shell = shell , cwd = cwd )
184
- except subprocess . CalledProcessError as e :
184
+ except Exception as e :
185
185
write (' Error running `%s`: %s' % (cmd , e .output or str (e )))
186
+ return None
186
187
187
188
188
189
def run_python_coverage (args ):
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
from setuptools import setup
3
3
4
- version = '2.0.17 '
4
+ version = '2.0.19 '
5
5
classifiers = ["Development Status :: 5 - Production/Stable" ,
6
6
"Environment :: Plugins" ,
7
7
"Intended Audience :: Developers" ,
You can’t perform that action at this time.
0 commit comments