Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit 2c52e94

Browse files
committed
Refactor installation process to remove unnecessary bundler commands and improve gem installation
1 parent 7ac3c9a commit 2c52e94

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Formula/git-pkgs.rb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@ def install
1616
system "git", "init"
1717
system "git", "add", "."
1818

19-
system "bundle", "config", "set", "--local", "without", "development"
20-
system "bundle", "install"
2119
system "gem", "build", "git-pkgs.gemspec"
22-
system "gem", "install", "--ignore-dependencies", "git-pkgs-#{version}.gem"
20+
system "gem", "install", "--no-document", "git-pkgs-#{version}.gem"
2321
bin.install libexec/"bin/git-pkgs"
2422
bin.env_script_all_files(libexec/"bin", GEM_HOME: ENV.fetch("GEM_HOME", nil))
2523
end

0 commit comments

Comments
 (0)