[elbe-devel] [PATCH 05/13] Change os.sytem to call_check for "barebox.py"
dion at linutronix.de
dion at linutronix.de
Mon Jun 24 12:48:45 CEST 2019
From: Olivier Dion <dion at linutronix.de>
Signed-off-by: Olivier Dion <dion at linutronix.de>
---
elbepack/debianize/barebox.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/elbepack/debianize/barebox.py b/elbepack/debianize/barebox.py
index 933658b4..9cea2ab9 100644
--- a/elbepack/debianize/barebox.py
+++ b/elbepack/debianize/barebox.py
@@ -7,6 +7,7 @@
import os
from shutil import copyfile
+from subprocess import check_call
from npyscreen import TitleText
@@ -64,7 +65,7 @@ class BareBox (DebianizeBase):
' -v ' + self.deb['p_version'] + \
' --create -M -D ' + self.deb['release'] + \
' "generated by elbe debianize"'
- os.system(cmd)
+ check_call(cmd, shell=True)
copyfile(os.path.join(self.tmpl_dir, 'barebox-image.install'),
'debian/barebox-image-' + pkg_name + '.install')
--
2.11.0
More information about the elbe-devel
mailing list