summaryrefslogtreecommitdiff
path: root/src/Propellor/CmdLine.hs
diff options
context:
space:
mode:
authorJoey Hess2014-07-07 02:00:04 -0400
committerJoey Hess2014-07-07 02:00:04 -0400
commit75ba4c5cccae7868dfa8caee0bd380022d23b9ca (patch)
treede165cc98299dfe750892000924bf97752051073 /src/Propellor/CmdLine.hs
parent593043515fecb28d4a55d51515eea9fbb69bc05e (diff)
propellor spin
Diffstat (limited to 'src/Propellor/CmdLine.hs')
-rw-r--r--src/Propellor/CmdLine.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Propellor/CmdLine.hs b/src/Propellor/CmdLine.hs
index bc5421e7..2a1d5e03 100644
--- a/src/Propellor/CmdLine.hs
+++ b/src/Propellor/CmdLine.hs
@@ -122,7 +122,9 @@ buildFirst cmdline next = do
newtime <- getmtime
if newtime == oldtime
then next
- else void $ boolSystem "./propellor" [Param "--continue", Param (show cmdline)]
+ else do
+ print ["./propellor"]
+ void $ boolSystem "./propellor" [Param "--continue", Param (show cmdline)]
, errorMessage "Propellor build failed!"
)
where