mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 17:32:00 +03:00
491f7f7508
Updates ormolu to 0.5.3.0 and formats the project
9 lines
218 B
Haskell
9 lines
218 B
Haskell
module Commands.Clean where
|
|
|
|
import Commands.Base
|
|
|
|
runCommand :: (Members '[Files, App] r) => Sem r ()
|
|
runCommand = do
|
|
buildDir <- askBuildDir
|
|
whenM (directoryExists' buildDir) (removeDirectoryRecursive' buildDir)
|