We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75f8943 commit a0ae497Copy full SHA for a0ae497
Rakefile
@@ -1 +1,16 @@
1
+module Bundler
2
+ class GemHelper
3
+ def perform_git_push_with_clean_env(options = '')
4
+ # Using a clean ENV ensures that ruby-based git credential helpers
5
+ # such as that used by boxen will still work:
6
+ Bundler.with_clean_env do
7
+ perform_git_push_without_clean_env(options)
8
+ end
9
10
+
11
+ alias_method :perform_git_push_without_clean_env, :perform_git_push
12
+ alias_method :perform_git_push, :perform_git_push_with_clean_env
13
14
+end
15
16
require 'bundler/gem_tasks'
0 commit comments