summaryrefslogtreecommitdiff
path: root/Init.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Init.hs')
-rw-r--r--Init.hs10
1 files changed, 6 insertions, 4 deletions
diff --git a/Init.hs b/Init.hs
index 822247179..a6f4fa935 100644
--- a/Init.hs
+++ b/Init.hs
@@ -21,6 +21,7 @@ import Logs.UUID
import Annex.Version
import Annex.UUID
import Utility.UserInfo
+import Utility.Shell
genDescription :: Maybe String -> Annex String
genDescription (Just d) = return d
@@ -92,7 +93,8 @@ preCommitHook :: Annex FilePath
preCommitHook = (</>) <$> fromRepo Git.localGitDir <*> pure "hooks/pre-commit"
preCommitScript :: String
-preCommitScript =
- "#!/bin/sh\n" ++
- "# automatically configured by git-annex\n" ++
- "git annex pre-commit .\n"
+preCommitScript = unlines
+ [ shebang
+ , "# automatically configured by git-annex"
+ , "git annex pre-commit ."
+ ]