nim-lang / nimble

Package manager for the Nim programming language.
Other
1.24k stars 174 forks source link

Allow custom clean task #1179

Open arkt8 opened 5 months ago

arkt8 commented 5 months ago

Adding a:

  task clean, "wipe out artifacts" :
    exec("rm -rf examples/out")

Doesn't allow nimble clean to executed it.

The above code was tested in the .nimble file and via an included .nims file.

So, it looks like that cannot it cannot be overriden by a custom task.