summaryrefslogtreecommitdiff
path: root/Init.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-05-06 15:58:13 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-05-06 15:58:13 -0400
commitae8912003022be1a8cd77684824a89460c7ff646 (patch)
treec79f54fe1654349312fc95dc4684300a63784bc6 /Init.hs
parent7df05f6417794713d8c1a7c051f5723cba543542 (diff)
fix use of wrong shebang when android is installing git-annex-shell wrapper on server
Diffstat (limited to 'Init.hs')
-rw-r--r--Init.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Init.hs b/Init.hs
index 62b12283f..4d27c4f1c 100644
--- a/Init.hs
+++ b/Init.hs
@@ -106,7 +106,7 @@ preCommitHook = (</>) <$> fromRepo Git.localGitDir <*> pure "hooks/pre-commit"
preCommitScript :: String
preCommitScript = unlines
- [ shebang
+ [ shebang_local
, "# automatically configured by git-annex"
, "git annex pre-commit ."
]