From da0bdc1a57d44ecfc7040affed725db4528d359a Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 20 Dec 2011 12:23:49 -0400 Subject: [PATCH] Fix the hook special remote, which bitrotted a while ago. --- Remote/Hook.hs | 7 +++---- debian/changelog | 1 + 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Remote/Hook.hs b/Remote/Hook.hs index ab84533b28..5c761f43b0 100644 --- a/Remote/Hook.hs +++ b/Remote/Hook.hs @@ -62,13 +62,12 @@ hookEnv k f = Just $ fileenv f ++ keyenv env s v = ("ANNEX_" ++ s, v) keyenv = [ env "KEY" (show k) - , env "HASH_1" hash_1 - , env "HASH_2" hash_2 + , env "HASH_1" (hashbits !! 0) + , env "HASH_2" (hashbits !! 1) ] fileenv Nothing = [] fileenv (Just file) = [env "FILE" file] - [hash_1, hash_2, _rest] = - map takeDirectory $ splitPath $ hashDirMixed k + hashbits = map takeDirectory $ splitPath $ hashDirMixed k lookupHook :: String -> String -> Annex (Maybe String) lookupHook hooktype hook =do diff --git a/debian/changelog b/debian/changelog index 3c977e817d..e187d8f6fa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ git-annex (3.20111212) UNRELEASED; urgency=low * Union merge now finds the least expensive way to represent the merge. * reinject: Add a sanity check for using an annexed file as the source file. * Properly handle multiline git config values. + * Fix the hook special remote, which bitrotted a while ago. -- Joey Hess Mon, 12 Dec 2011 01:57:49 -0400