-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Made Install-Dependencies much faster by only installing missing requirements #894
base: main
Are you sure you want to change the base?
Made Install-Dependencies much faster by only installing missing requirements #894
Conversation
Learn Build status updates of commit df85d15: ✅ Validation status: passed
For more details, please refer to the build report. For any questions, please:
|
df85d15
to
e090cee
Compare
Learn Build status updates of commit e090cee: ✅ Validation status: passed
For more details, please refer to the build report. For any questions, please:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Learn Build status updates of commit 4953171: ✅ Validation status: passed
For more details, please refer to the build report. For any questions, please:
|
Learn Build status updates of commit 2e1c8dc: ✅ Validation status: passed
For more details, please refer to the build report. For any questions, please:
|
Learn Build status updates of commit 0f74281: ✅ Validation status: passed
For more details, please refer to the build report. For any questions, please:
|
Learn Build status updates of commit 7e83d2c: ✅ Validation status: passed
For more details, please refer to the build report. For any questions, please:
|
The current build script installs all required module dependencies, even if they are already installed. This only installs them if they are missing or not using the required version.
The
-Force
switch follows the original behavior of installing all modules, even if they are already installed.This PR addresses #893 (Make Install-Dependencies faster by only installing what is needed). It's a low priority "nice to have" feature that improves the local build experience.