diff --git a/yesod-bin/main.hs b/yesod-bin/main.hs index c4292153..022b8542 100755 --- a/yesod-bin/main.hs +++ b/yesod-bin/main.hs @@ -102,7 +102,9 @@ main = do ] optParser' let cabal = rawSystem' (cabalCommand o) case optCommand o of - Init{..} -> scaffold _initBare _initName _initDatabase + Init{..} -> do + putStrLn "NOTE: This command has been deprecated in favor of 'stack new'" + scaffold _initBare _initName _initDatabase HsFiles -> mkHsFile Configure -> cabal ["configure"] Build es -> touch' >> cabal ("build":es)