更新「temp_file/app/controllers/admin/sites_controller.rb」

This commit is contained in:
chiu 2023-04-08 04:25:57 +00:00
parent 374f737449
commit d67d357231
1 changed files with 3 additions and 3 deletions

View File

@ -4,12 +4,12 @@ class Admin::SitesController < OrbitAdminController
begin
include BundlerHelper
rescue
def bundler_with_clean_env
def bundler_with_clean_env(&block)
if block_given?
if Bundler.respond_to?(:with_unbundled_env)
Bundler.with_unbundled_env(&Proc.new)
Bundler.with_unbundled_env(&block)
else
Bundler.with_clean_env(&Proc.new)
Bundler.with_clean_env(&block)
end
end
end