summaryrefslogtreecommitdiff
path: root/src/Propellor
diff options
context:
space:
mode:
authorJoey Hess2015-05-30 11:05:34 -0400
committerJoey Hess2015-05-30 11:05:34 -0400
commitaa7dcad9ba8d14013f26f6e8554901d56ef4cb5c (patch)
tree3ff611c02e6b9580ade3021f5e7c65c03a31c953 /src/Propellor
parent354803328067c261f439b7a8046717320cfd557c (diff)
export createProcess with debug logging from Propellor.Property.Cmd
Diffstat (limited to 'src/Propellor')
-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.
--