diff options
author | 2007-03-21 00:51:53 +0000 | |
---|---|---|
committer | 2007-03-21 00:51:53 +0000 | |
commit | c5394778e629b1f574bb0b31b0aa36cbdcc1e0d3 (patch) | |
tree | 9efe0b1a7879e90efe86eab5858e2e18bb8656bd /bin | |
parent | increase height of list to 400px from 180px (diff) | |
download | gli-c5394778e629b1f574bb0b31b0aa36cbdcc1e0d3.tar.gz gli-c5394778e629b1f574bb0b31b0aa36cbdcc1e0d3.tar.bz2 gli-c5394778e629b1f574bb0b31b0aa36cbdcc1e0d3.zip |
check return value for >= 1 instead of just == 1
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/gli/branches/overhaul@1816 f8877401-5920-0410-a79b-8e2d7e04ca0d
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/installer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/installer b/bin/installer index ded6b0f..f0a2d92 100755 --- a/bin/installer +++ b/bin/installer @@ -106,7 +106,7 @@ then # Try to run the gtk installer try_run /usr/bin/installer-gtk ${*} status=${?} - if [ ${status} -eq 1 ] + if [ ${status} -ge 1 ] then try_run /usr/bin/installer-dialog ${*} || { if [ ${status} -ne 2 ] |