diff options
author | Preston Cody <codeman@gentoo.org> | 2007-03-03 20:58:14 +0000 |
---|---|---|
committer | Preston Cody <codeman@gentoo.org> | 2007-03-03 20:58:14 +0000 |
commit | 58ee9f9e9124866da6a015cda6e71c1a88ad0c8c (patch) | |
tree | d6af88eca9b066227795f0e6b8e13a3cf343a3d0 | |
parent | updating changelog (diff) | |
download | gli-58ee9f9e9124866da6a015cda6e71c1a88ad0c8c.tar.gz gli-58ee9f9e9124866da6a015cda6e71c1a88ad0c8c.tar.bz2 gli-58ee9f9e9124866da6a015cda6e71c1a88ad0c8c.zip |
fix boot device detection. was only looking at drives with mounts b4. untested.
fixed silly bug in save filename
adding back in set_etc_portage to install process.
putting an exit(0) back in trunk just because.
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/gli/trunk@1745 f8877401-5920-0410-a79b-8e2d7e04ca0d
-rwxr-xr-x | src/fe/dialog/gli-dialog.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fe/dialog/gli-dialog.py b/src/fe/dialog/gli-dialog.py index ce591ee..67c34d9 100755 --- a/src/fe/dialog/gli-dialog.py +++ b/src/fe/dialog/gli-dialog.py @@ -270,6 +270,8 @@ Do you have a previously generated XML file for the ClientConfiguration? if d.yesno(_(u"There was an Exception received during the install that is outside of the normal install errors. This is a bad thing. The error was:")+ str(data) + _(u"\nPlease submit a bug report (after searching to make sure it's not a known issue and verifying you didn't do something stupid) with the contents of /var/log/install.log and /tmp/installprofile.xml and the version of the installer you used\nDo you want to cleanup your system to attempt another install?"), width=77, height=22) == DLG_YES: cc.start_failure_cleanup() sys.exit(0) + else: + sys.exit(0) elif type_r == "progress": #SECONDARY UPDATIN' GOIN ON IN HERE diff = (data[0]*100)/num_steps |