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-11-26 17:52:47 +0000
commit2dae7dbcd175c633f7c5354fcd2a606789ebe17e (patch)
tree7e76ae50e4668da304ce60f1ba164647a8d976e7
parentcf232ab28c5c79a54a88d4d7a8177bed2bffa4ba (diff)
downloaddefinitions-2dae7dbcd175c633f7c5354fcd2a606789ebe17e.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]+)$")