summaryrefslogtreecommitdiff
path: root/modules/blobs/get.f.sh
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-03-14 22:26:05 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-03-14 22:26:05 -0400
commit6d386c6cfe3d04a3188b9d05b7656ffec2a8f51f (patch)
tree96764b24c8cf130d25ddfbcea3adc1b2293f0fa5 /modules/blobs/get.f.sh
parent7190864de465c3c3b015540ca45c9d9bccb5b790 (diff)
fixity fix
Diffstat (limited to 'modules/blobs/get.f.sh')
-rw-r--r--modules/blobs/get.f.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/blobs/get.f.sh b/modules/blobs/get.f.sh
index fafb076..7cc49c6 100644
--- a/modules/blobs/get.f.sh
+++ b/modules/blobs/get.f.sh
@@ -19,7 +19,7 @@ license='AGPLv3+'
# along with this program. If not, see <http://www.gnu.org/licenses/>.
usage="ID FILENAME"
-doc="Unlike commit.f, FILENAME may be a character device such as
+doc="Unlike put.f, FILENAME may be a character device such as
/dev/stdout or /dev/fd/n."
. "${0%/*}/_shlib.sh"
@@ -29,7 +29,7 @@ main() {
name=$2
mkdir -p -- "$(dirname -- "$name")"
- < "$REPO/blobs/${id#*:}" gunzip > "$name"
+ < "$RVS_REPO/blobs/${id#*:}" gunzip > "$name"
}
main "$@"