JustinGrote / ModuleFast

A "fast and loose" way to install modules from Powershell Gallery quickly. Meant for CICD, not production
Other
77 stars 5 forks source link

Handle if an install is cancelled and one of the dependencies is incomplete #36

Open JustinGrote opened 8 months ago

JustinGrote commented 8 months ago

Today, if you install Az and cancel, it will not fix any remainder dependencies.

Some ways to handle this:

  1. Process dependencies first when found. May impact performance
  2. Track dependencies separately and place a .incompleteDependencies into a module folder, resolving only when all modules are installed. Lots of potential issues here.