In my rails 3 project I setup my barista_config so that js files would get compiled to public/js
c.output_root = Rails.root.join("public", "js")
This works fine but then I changed it to:
c.output_root = Rails.root.join("public", "javascripts", "compiled")
Even though I changed the config it is still compiling my coffeescripts to the old directory.