summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoey Hess2015-01-08 23:03:57 -0400
committerJoey Hess2015-01-08 23:03:57 -0400
commit4d0a732a3001e9a59a943ada844f58f5951d02cb (patch)
tree3739f0aaf9b6b42982d7e224cdb479be9890a856 /src
parent5585778e5476e6ae16f0e378a2c7a005fc13122c (diff)
make both lines pastable together
Diffstat (limited to 'src')
-rw-r--r--src/Propellor/PrivData.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/PrivData.hs b/src/Propellor/PrivData.hs
index 2b27f221..6643d81d 100644
--- a/src/Propellor/PrivData.hs
+++ b/src/Propellor/PrivData.hs
@@ -83,7 +83,7 @@ withPrivData' feed srclist c mkprop = addinfo $ mkprop $ \a ->
warningMessage $ "Missing privdata " ++ intercalate " or " fieldnames ++ " (for " ++ cname ++ ")"
liftIO $ putStrLn $ "Fix this by running:"
liftIO $ forM_ srclist $ \src -> do
- putStrLn $ " propellor --set '" ++ show (privDataField src) ++ "' '" ++ cname ++ "'"
+ putStrLn $ " propellor --set '" ++ show (privDataField src) ++ "' '" ++ cname ++ "' \\"
maybe noop (\d -> putStrLn $ " " ++ d) (describePrivDataSource src)
putStrLn ""
return FailedChange