mcman icon indicating copy to clipboard operation
mcman copied to clipboard

[feat] Steps (compiled addons etc)

Open TheAlan404 opened this issue 1 year ago • 0 comments

Most addons could be downloaded but some are compiled. This proposal (that will require a lot of code change) will allow there to be more complex addons.

The idea is that a Downloadable, instead of returning a ResolvedFile, will return Vec<Step>

pub enum Step {
  Download(ResolvedFile),
  Execute(...),
  Compile(...),
}

TheAlan404 avatar Dec 17 '23 08:12 TheAlan404