diff options
| author | Joey Hess <joey@kitenet.net> | 2014-10-08 13:14:21 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-10-08 13:14:21 -0400 |
| commit | 6a674c79d7d9f58c683695114bca2bdffe671bf7 (patch) | |
| tree | 35de2e3335a794f6885a18d1a8976bc65f90f6e7 /src/Propellor/CmdLine.hs | |
| parent | 21117d5e2108fac5bca31e40049eee9368faee63 (diff) | |
fix some accidental uses of spaces, rather than tabs, for indentation
Diffstat (limited to 'src/Propellor/CmdLine.hs')
| -rw-r--r-- | src/Propellor/CmdLine.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Propellor/CmdLine.hs b/src/Propellor/CmdLine.hs index e1684c38..415b8576 100644 --- a/src/Propellor/CmdLine.hs +++ b/src/Propellor/CmdLine.hs @@ -37,9 +37,9 @@ usage = do processCmdLine :: IO CmdLine processCmdLine = go =<< getArgs where - go ("--help":_) = usage - go ("--spin":h:[]) = return $ Spin h - go ("--boot":h:[]) = return $ Boot h + go ("--help":_) = usage + go ("--spin":h:[]) = return $ Spin h + go ("--boot":h:[]) = return $ Boot h go ("--add-key":k:[]) = return $ AddKey k go ("--set":f:c:[]) = withprivfield f c Set go ("--dump":f:c:[]) = withprivfield f c Dump @@ -48,7 +48,7 @@ processCmdLine = go =<< getArgs go ("--continue":s:[]) = case readish s of Just cmdline -> return $ Continue cmdline Nothing -> errorMessage "--continue serialization failure" - go ("--chain":h:[]) = return $ Chain h + go ("--chain":h:[]) = return $ Chain h go ("--docker":h:[]) = return $ Docker h go (h:[]) | "--" `isPrefixOf` h = usage |
