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.
2 parents 0c711ff + b91fb94 commit eb80f1fCopy full SHA for eb80f1f
CHANGELOG.md
@@ -2,6 +2,7 @@
2
3
* Fix binstubs not being replaced when their quoting style was changed (#534)
4
* Preserve comments right after the shebang line which might include magic comments such as `frozen_string_literal: true'
5
+* Fix binstub failures when Bundler's `BUNDLE_APP_CONFIG` environment variable is present (#545)
6
7
## 2.0.2
8
lib/spring/application_manager.rb
@@ -92,7 +92,7 @@ def stop
92
def start_child(preload = false)
93
@child, child_socket = UNIXSocket.pair
94
95
- Bundler.with_clean_env do
+ Bundler.with_original_env do
96
@pid = Process.spawn(
97
{
98
"RAILS_ENV" => app_env,
0 commit comments