diff options
Diffstat (limited to 'plugins/repo/commit.d.sh')
-rw-r--r-- | plugins/repo/commit.d.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/repo/commit.d.sh b/plugins/repo/commit.d.sh index 3c6709d..1175a07 100644 --- a/plugins/repo/commit.d.sh +++ b/plugins/repo/commit.d.sh @@ -1,6 +1,6 @@ #!@SHELL@ -name='rvs commit.d' -ver='0.7.0' +name='rvs repo commit.d' +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.d DIRNAME dir="$1" @@ -17,10 +17,10 @@ tmp=`tempfile` cd "$dir" for file in *; do - hash=`"$RVSDIR/commit" "$file"` + hash=`"$libexecdir/commit" "$file"` echo "$file:$hash" >> "$tmp" done -"$RVSDIR/commit.f" "$tmp" +"$libexecdir/commit.f" "$tmp" rm "$tmp" |