summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinstaller/installer.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/installer/installer.py b/installer/installer.py
index bd3a94f2..af25876e 100755
--- a/installer/installer.py
+++ b/installer/installer.py
@@ -29,6 +29,7 @@ import subprocess
import tempfile
import errno
import time
+import traceback
class BaserockInstaller():
@@ -58,6 +59,7 @@ class BaserockInstaller():
self.do_unmounts(mounted)
self.finish_and_reboot()
except BaseException, e:
+ print traceback.format_exc()
print "Something failed, opening shell..."
print "Once you have finished, use `reboot -f`"
os.execl('/bin/sh', 'sh')