summaryrefslogtreecommitdiff
path: root/src/Propellor/Git.hs
diff options
context:
space:
mode:
authorJoey Hess2016-01-12 12:35:55 -0400
committerJoey Hess2016-01-12 12:35:55 -0400
commit5ead4f8162873db7d627cf1c2d0b64413d51ef38 (patch)
tree200e4a31ff864f10e286df79d5935ecd55d4e402 /src/Propellor/Git.hs
parentbad21642a23305b647a5ef7c0695c164d646a5a2 (diff)
add missing Control.Applicative imports for old ghc
Diffstat (limited to 'src/Propellor/Git.hs')
-rw-r--r--src/Propellor/Git.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Propellor/Git.hs b/src/Propellor/Git.hs
index 5a16b3db..949f430b 100644
--- a/src/Propellor/Git.hs
+++ b/src/Propellor/Git.hs
@@ -4,6 +4,8 @@ import Utility.Process
import Utility.Exception
import System.Directory
+import Control.Applicative
+import Prelude
getCurrentBranch :: IO String
getCurrentBranch = takeWhile (/= '\n')