Problem
flow dependencies install --help says:
--skip-update-prompts Skip prompting to update existing dependencies
However, even when passing the option, I'm still being prompted if I want to update.
Steps to Reproduce
- Run
flow dependencies install --skip-update-prompts
- Get prompted to update outdated dependency
Acceptance Criteria
Option works as expected, or remove if unimplemented
Context
Cause
|
skipUpdatePrompts bool `default:"false" flag:"skip-update-prompts" info:"Skip prompting to update existing dependencies"` |
exists, but is not used anywere.
Problem
flow dependencies install --helpsays:--skip-update-prompts Skip prompting to update existing dependenciesHowever, even when passing the option, I'm still being prompted if I want to update.
Steps to Reproduce
flow dependencies install --skip-update-promptsAcceptance Criteria
Option works as expected, or remove if unimplemented
Context
Cause
flow-cli/internal/dependencymanager/dependencyinstaller.go
Line 104 in 5a18fad