boozook / playdate

Playdate Build Tools and API
https://mastodon.gamedev.place/@pd
MIT License
133 stars 8 forks source link

clean entire product.layout.build() if force rebuild requested #383

Open github-actions[bot] opened 2 months ago

github-actions[bot] commented 2 months ago

clean entire product.layout.build() if force rebuild requested https://github.com/boozook/playdate/blob/a69b41ad0b4b703b67bf301f68ba50bb71b87f78/cargo/src/package/mod.rs#L155

Source of this issue ```rust ), ); if config.compile_options.build_config.force_rebuild { // TODO: clean entire product.layout.build() if force rebuild requested } if let Some(assets) = assets { for art in assets { log::debug!("Packaging assets {:?} {}", art.kind, product.presentable_name()); prepare_assets(config, art, product.layout.build(), true, product.layout.root())?; } } // manifest: ```