summaryrefslogtreecommitdiff
path: root/src/Propellor/Git
diff options
context:
space:
mode:
authorJoey Hess2016-03-06 14:18:42 -0400
committerJoey Hess2016-03-06 14:18:42 -0400
commit3da43dbbc180c5c923208281567abe225d8bad62 (patch)
tree49e7ec04340a9e3547fcc786530d9b0cb41f5379 /src/Propellor/Git
parent0b97dc3e9c122c7b9ca78012cafb0db8c0fe7844 (diff)
propellor spin
Diffstat (limited to 'src/Propellor/Git')
-rw-r--r--src/Propellor/Git/Config.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Git/Config.hs b/src/Propellor/Git/Config.hs
index f5b6678d..837fc0de 100644
--- a/src/Propellor/Git/Config.hs
+++ b/src/Propellor/Git/Config.hs
@@ -14,7 +14,7 @@ getGitConfigValue :: String -> IO (Maybe String)
getGitConfigValue key = do
value <- catchMaybeIO $
takeWhile (/= '\n')
- <$> readProcess "git" ["config", key]
+ <$> readProcess"git" ["config", key]
return $ case value of
Just v | not (null v) -> Just v
_ -> Nothing