summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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]+)$")