Skip to content

Commit 34963cb

Browse files
committed
Remove retry args
1 parent 1366850 commit 34963cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/license_finder/package_managers/bundler.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ def prepare_command
3434
#logger.info self.class, "Running bundle install for #{Dir.pwd} with path #{gem_path}", color: :blue
3535

3636
#"bundle install #{ignored_groups_argument} --path #{gem_path}".strip
37-
"bundle install --retry 3 #{ignored_groups_argument}".strip
37+
"bundle install #{ignored_groups_argument}".strip
3838
else
3939
Dir.chdir(project_path) do
4040
Cmd.run("bundle config set --local without 'test development devDependencies')")
4141
end
4242

43-
"bundle install --retry 3 --deployment".strip
43+
"bundle install --deployment".strip
4444
end
4545
end
4646

0 commit comments

Comments
 (0)