diff options
| author | Joey Hess <joeyh@joeyh.name> | 2016-03-06 14:56:47 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2016-03-06 14:56:47 -0400 |
| commit | 827a70b41b54aa5fa7a0c35a8becab773291f453 (patch) | |
| tree | ac5326d0feab0d7a07692ac9f28eaef8604bc89f /src | |
| parent | 15d628d6da29700bffcc24d8d959db7d82f1fe7e (diff) | |
| parent | 76d74c187f5441ed7115f0ab6024d1fcfc4f5050 (diff) | |
Merge branch 'joeyconfig'
Diffstat (limited to 'src')
| -rw-r--r-- | src/Propellor/Git/Config.hs | 2 |
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 |
