mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-26 10:35:04 +03:00
25 lines
882 B
Haskell
25 lines
882 B
Haskell
module Command.Clean
|
|
( clean
|
|
) where
|
|
|
|
import System.Directory (doesDirectoryExist, removeDirectoryRecursive)
|
|
import System.IO (hFlush, stdout)
|
|
import Control.Monad.IO.Class (liftIO)
|
|
|
|
import qualified StrongPath as SP
|
|
import Command (Command)
|
|
import Command.Common (findWaspProjectRootDirFromCwd)
|
|
import qualified Common
|
|
|
|
clean :: Command ()
|
|
clean = do
|
|
waspProjectDir <- findWaspProjectRootDirFromCwd
|
|
let dotWaspDirFp = SP.toFilePath $ waspProjectDir SP.</> Common.dotWaspDirInWaspProjectDir
|
|
liftIO $ putStrLn "Deleting .wasp/ directory..." >> hFlush stdout
|
|
doesDotWaspDirExist <- liftIO $ doesDirectoryExist dotWaspDirFp
|
|
if doesDotWaspDirExist
|
|
then liftIO $ do removeDirectoryRecursive dotWaspDirFp
|
|
putStrLn "Deleted .wasp/ directory."
|
|
else liftIO $ putStrLn "Nothing to delete: .wasp directory does not exist."
|
|
|