You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.
Currently if path is not set, bundle clean --dry-run requires --force to print listing. It would be nice if it bundler followed the common paradigms where --dry-run prints a listing of what changes without --force, and --force is only required when you're prevented from executing the action for some reason and you need to override the failsafes and force the action.
Propose change current bundle clean --dry-run --force to bundle clean --dry-run for the case when path is not set.
The text was updated successfully, but these errors were encountered:
Changed the behavior of 'bundle clean --dry-run' to output the list regardless of path set or force option
Changed the behavior of 'bundle clean --dry-run' to output the list of gems bundle without having the local path set or providing the '--force' option. This change does not affect the actual behavior of 'bundle clean' which requires either the path being set or use of '--force'.
Closes#5027.
Changed the behavior of 'bundle clean --dry-run' to output the list regardless of path set or force option
Changed the behavior of 'bundle clean --dry-run' to output the list of gems bundle without having the local path set or providing the '--force' option. This change does not affect the actual behavior of 'bundle clean' which requires either the path being set or use of '--force'.
Closes#5027.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently if
path
is not set,bundle clean --dry-run
requires--force
to print listing. It would be nice if it bundler followed the common paradigms where--dry-run
prints a listing of what changes without--force
, and--force
is only required when you're prevented from executing the action for some reason and you need to override the failsafes and force the action.Propose change current
bundle clean --dry-run --force
tobundle clean --dry-run
for the case whenpath
is not set.The text was updated successfully, but these errors were encountered: