summaryrefslogtreecommitdiff
path: root/plugins/repo/commit.sh
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2009-08-03 19:03:08 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-06-26 00:30:13 -0600
commitfc8d2f56a8104e755766fbbca4729906000cf78d (patch)
treeb902e17f5e59e960772d215ee613a73c8a87226b /plugins/repo/commit.sh
parentaa5141e77203fd084d809f27d55192a988723803 (diff)
0.7.2 -- refactor slightly, flesh out plugin: users
Diffstat (limited to 'plugins/repo/commit.sh')
-rw-r--r--plugins/repo/commit.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/repo/commit.sh b/plugins/repo/commit.sh
index fbfd7ca..d85dd01 100644
--- a/plugins/repo/commit.sh
+++ b/plugins/repo/commit.sh
@@ -1,6 +1,6 @@
#!@SHELL@
-name='rvs commit'
-ver='0.7.0'
+name='rvs repo commit'
+ver='0.7.2'
# Copyright (C) 2009 Luke Shumaker
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -9,7 +9,7 @@ ver='0.7.0'
#
# Originally written by Luke Shumaker <lukeshu@sbcglobal.net>.
-source "$RVSDIR/lib/stdio"
+source "$libexecdir/lib/stdio"
# commit FILE
file=${1-.}
@@ -30,7 +30,7 @@ elif [ -s $file ]; then type='s'; # socket
else error "could not identify file type of \`$file'"
fi
-ret=`"$RVSDIR/commit.$type" "$file"`
+ret=`"$libexecdir/commit.$type" "$file"`
tmp=`tempfile`
cat << __EOF__ > "$tmp"
@@ -42,6 +42,6 @@ owner:$owner
license:$license
__EOF__
-"$RVSDIR/commit.f" "$tmp"
+"$libexecdir/commit.f" "$tmp"
rm "$tmp"