From 30f1fbf2aab8ae6c45907bab2eafdb0e09998c15 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 28 Mar 2010 12:25:08 -0400 Subject: Rework rvs a lot (no longer needs complex C dependency tracker!) Rework ./configure, and how it uses `srcdir'. Probably broke all the other packages. Oh well, everything only half-works right now. --- plugins/users/bin/commit.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 plugins/users/bin/commit.sh (limited to 'plugins/users/bin/commit.sh') diff --git a/plugins/users/bin/commit.sh b/plugins/users/bin/commit.sh new file mode 100644 index 0000000..1fa2e52 --- /dev/null +++ b/plugins/users/bin/commit.sh @@ -0,0 +1,29 @@ +#!/bin/sh +name='rvs users commit' +ver=0.9 +# Copyright (C) 2009 Luke Shumaker +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; see the file COPYING. +# If not, see . + +source "$libexecdir/@ID@/stdio" + +ret=`$RVS repo-0.7beta/commit $@` +if [ -f "$REPO/@ID@/user" ]; then + cp "$REPO/@ID@/user" "$REPO/@ID@/repo/$ret" + echo "$ret" +else + error 'you must be logged in to commit files' +fi + -- cgit v1.2.3-54-g00ecf