|
@@ -10,10 +10,11 @@ class Package(object):
|
|
|
|
|
|
def _exec(self, *args):
|
|
def _exec(self, *args):
|
|
try:
|
|
try:
|
|
- subprocess.check_output(args, cwd=self.path)
|
|
|
|
|
|
+ subprocess.run(args, cwd=self.path, capture_output=True, check=True,
|
|
|
|
+ text=True)
|
|
|
|
|
|
except subprocess.CalledProcessError as e:
|
|
except subprocess.CalledProcessError as e:
|
|
- print(e.stderr)
|
|
|
|
|
|
+ print("\n".join([e.stdout,e.stderr]))
|
|
|
|
|
|
def _git(self, *args):
|
|
def _git(self, *args):
|
|
self._exec('git', *args)
|
|
self._exec('git', *args)
|