Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an easy way to get rid of anything getting generated as a result of performing an SBT build? It turns out it creates target directories all over the place. Performing

sbt clean clean-cache clean-lib clean-plugins

... doesn't get rid of all.

share|improve this question
I would like to see this too and have submitted a ticket: code.google.com/p/simple-build-tool/issues/detail?id=166 – landon9720 May 16 '11 at 21:57

1 Answer

up vote 3 down vote accepted

If you use git:

git clean -f -d -x
share|improve this answer
I guess that could work in my case. However, it raises a new question. Is there an easy way to automatically mark all irrelevant directories to be ignored? – Wilfred Springer Dec 22 '10 at 13:23
In absence of a real option, I guess this is the only solution. – Wilfred Springer Feb 24 '11 at 22:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.