summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/Cmd.hs
diff options
context:
space:
mode:
authorJoey Hess2015-05-30 11:05:56 -0400
committerJoey Hess2015-05-30 11:05:56 -0400
commitb36a75fd93a730ea148e67eb7bf1300d738ff82a (patch)
tree8f65595e6de56aabd39d7a6d125c16a99493fa19 /src/Propellor/Property/Cmd.hs
parentfafe1e6f5ce082f93d0b97dbacdcb149778ccaf9 (diff)
parentaa7dcad9ba8d14013f26f6e8554901d56ef4cb5c (diff)
Merge branch 'joeyconfig'
Diffstat (limited to 'src/Propellor/Property/Cmd.hs')
-rw-r--r--src/Propellor/Property/Cmd.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Propellor/Property/Cmd.hs b/src/Propellor/Property/Cmd.hs
index 23f1075b..23816a94 100644
--- a/src/Propellor/Property/Cmd.hs
+++ b/src/Propellor/Property/Cmd.hs
@@ -14,18 +14,19 @@ module Propellor.Property.Cmd (
boolSystemEnv,
safeSystem,
safeSystemEnv,
- shellEscape
+ shellEscape,
+ createProcess,
) where
import Control.Applicative
import Data.List
import "mtl" Control.Monad.Reader
-import System.Process (CreateProcess)
import Propellor.Types
import Propellor.Property
import Utility.SafeCommand
import Utility.Env
+import Utility.Process (createProcess, CreateProcess)
-- | A property that can be satisfied by running a command.
--