From 2fee9dc9d149681f9a928c1142e21ab9b190f86f Mon Sep 17 00:00:00 2001 From: Tony-Sol Date: Thu, 13 Jun 2024 19:32:11 +0300 Subject: [PATCH] Apply --force flag if set --- lib/bundle/tap_installer.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/bundle/tap_installer.rb b/lib/bundle/tap_installer.rb index 09ebef9968..fc13b0b69a 100644 --- a/lib/bundle/tap_installer.rb +++ b/lib/bundle/tap_installer.rb @@ -18,6 +18,7 @@ def install(name, preinstall: true, verbose: false, force: false, **options) puts "Installing #{name} tap. It is not currently installed." if verbose args = [] + args << "--force" if force args.append("--force-auto-update") if options[:force_auto_update] success = if options[:clone_target]