From 8362b19721d06b1cea77468b6efe9396c9397857 Mon Sep 17 00:00:00 2001 From: Pedro Alvarez Date: Wed, 26 Nov 2014 18:17:11 +0000 Subject: fixup install_system compute install command --- installer/installer.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/installer/installer.py b/installer/installer.py index e9761a5c..bd3a94f2 100755 --- a/installer/installer.py +++ b/installer/installer.py @@ -157,8 +157,7 @@ class BaserockInstaller(): def install_system(self, install_script): - run_script = "sh %s" % install_script - subprocess.check_call(run_script, shell=True) + subprocess.check_call(['sh', install_script]) def is_device(self, location): try: -- cgit v1.2.1