summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2014-11-26 17:52:47 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2014-12-02 17:58:47 +0000
commit07ec77e783020fa940aafede8e90035d83eb60e2 (patch)
tree8fa305891a7fac3c83ccc9d73755b5b9e46c1310
parent6549a8b2aefeb1ca35872e1517b22455dacf254c (diff)
downloaddefinitions-07ec77e783020fa940aafede8e90035d83eb60e2.tar.gz
fixup compute_install_command
-rwxr-xr-xinstaller/installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/installer.py b/installer/installer.py
index 6d4ac297..5c504ad1 100755
--- a/installer/installer.py
+++ b/installer/installer.py
@@ -158,7 +158,7 @@ class BaserockInstaller():
def install_system(self, install_script):
run_script = "sh %s" % install_script
- process = subprocess.check_call(run_script, shell=True)
+ subprocess.check_call(run_script, shell=True)
def deploying_to_device(self, location):
dev_regex = re.compile("^/dev/((sd|vd|mmcblk|hd)[a-z0-9]+)$")