diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-07-19 23:34:24 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-07-19 23:34:24 +0000 |
commit | ff478f140023b3eb86d0420dc272c6d1a6e5af55 (patch) | |
tree | 10b408026fd503fdcd9305f1d0ceb5e37389ed57 /bin | |
parent | src/GLIClientController.py: (diff) | |
download | gli-ff478f140023b3eb86d0420dc272c6d1a6e5af55.tar.gz gli-ff478f140023b3eb86d0420dc272c6d1a6e5af55.tar.bz2 gli-ff478f140023b3eb86d0420dc272c6d1a6e5af55.zip |
Fix a missed space in the installer script.
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/gli/trunk@1477 f8877401-5920-0410-a79b-8e2d7e04ca0d
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/installer | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/installer b/bin/installer index aaf1473..13a5a12 100755 --- a/bin/installer +++ b/bin/installer @@ -1,6 +1,6 @@ #!/bin/bash # -# $Header: /var/cvsroot/gentoo/src/installer/bin/installer,v 1.2 2006/07/13 14:22:52 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/installer/bin/installer,v 1.3 2006/07/19 23:34:24 wolf31o2 Exp $ # # This is the installer script that we will use to determine whether or not # we are running in X or as root. A good portion of this script was ripped @@ -33,7 +33,7 @@ launch= if [ "${1}" == "gtk" ]; then launch=gtk shift -elif [ "${1}" =="dialog" ]; then +elif [ "${1}" == "dialog" ]; then launch=dialog shift fi |