diff options
Diffstat (limited to 'plugins/users/rmuser.sh')
-rw-r--r-- | plugins/users/rmuser.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/users/rmuser.sh b/plugins/users/rmuser.sh index 7a33de8..a9f566f 100644 --- a/plugins/users/rmuser.sh +++ b/plugins/users/rmuser.sh @@ -1,6 +1,6 @@ #!@SHELL@ name='rvs users rmuser' -ver='0.7.3' +ver=0.8r61 # Copyright (C) 2009 Luke Shumaker # # This file is part of rvs. @@ -19,11 +19,11 @@ ver='0.7.3' # If not, write to the Free Software Foundation, # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -source "$libexecdir/lib/stdio" +source "$libexecdir/@ID@/stdio" user="$1" -if [ -f "$REPO/users/$user" ]; then - rm "$REPO/users/$user" +if [ -f "$REPO/@ID@/users/$user" ]; then + rm "$REPO/@ID@/users/$user" else error "User \`$user' does not exist" fi |