summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-14 12:29:10 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-15 12:31:32 +0100
commit5da7195b52e2508c04d5c53bd91cce08cce5ddb0 (patch)
treeb7c94e7f8d072cda51682b4471aefe69e567f80f /lib
parent449e7fa5c8d0fab7c026ce8b3cc9ca3eb01e7253 (diff)
downloadbundler-5da7195b52e2508c04d5c53bd91cce08cce5ddb0.tar.gz
Test and fix `bundle viz` command deprecation
Diffstat (limited to 'lib')
-rw-r--r--lib/bundler/feature_flag.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/feature_flag.rb b/lib/bundler/feature_flag.rb
index e01676f97d..5e5d97ec42 100644
--- a/lib/bundler/feature_flag.rb
+++ b/lib/bundler/feature_flag.rb
@@ -56,7 +56,7 @@ module Bundler
settings_flag(:unlock_source_unlocks_spec) { !bundler_2_mode? }
settings_flag(:update_requires_all_flag) { bundler_3_mode? }
settings_flag(:use_gem_version_promoter_for_major_updates) { bundler_2_mode? }
- settings_flag(:viz_command) { !bundler_2_mode? }
+ settings_flag(:viz_command) { !bundler_3_mode? }
settings_option(:default_cli_command) { bundler_2_mode? ? :cli_help : :install }