Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 23020 - Slight typo in extra_functions.sh
Summary: Slight typo in extra_functions.sh
Status: RESOLVED FIXED
Alias: None
Product: Portage Development
Classification: Unclassified
Component: Unclassified (show other bugs)
Hardware: All Linux
: High normal
Assignee: Nicholas Jones (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-06-17 15:25 UTC by Wout Mertens (RETIRED)
Modified: 2011-10-30 22:21 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Wout Mertens (RETIRED) gentoo-dev 2003-06-17 15:25:56 UTC
the enewuser function will give a slight bash error, fix below: 
 
--- extra_functions.sh.orig     2003-06-17 22:49:29.000000000 +0200 
+++ extra_functions.sh  2003-06-17 22:49:48.000000000 +0200 
@@ -397,7 +397,7 @@ 
        fi 
 
        # see if user already exists 
-       if [ ! -z "${realuser}"]; then 
+       if [ ! -z "${realuser}" ]; then 
                if [ "${euser}" == "${realuser}" ]; then 
                        einfo "${euser} already exists on your system :)" 
                        return 0 
 
notice the space.
Comment 1 Marius Mauch (RETIRED) gentoo-dev 2003-09-29 00:08:13 UTC
seems to be fixed