Skip to content
Snippets Groups Projects
Unverified Commit 0dcfdbe0 authored by rmnull's avatar rmnull
Browse files

enable patchelf.rb writing for devs.

parent 49fa3cc7
No related branches found
No related tags found
No related merge requests found
# frozen_string_literal: true
# enables experimental patchelf.rb write support.
HOMEBREW_PATCHELF_RB_WRITE = ENV["HOMEBREW_PATCHELF_RB_WRITE"].present?.freeze
HOMEBREW_PATCHELF_RB_WRITE = (
ENV["HOMEBREW_NO_PATCHELF_RB_WRITE"].blank? &&
(ENV["HOMEBREW_PATCHELF_RB_WRITE"].present? ||
(ENV["CI"].blank? && ENV["HOMEBREW_DEVELOPER"].present?))
).freeze
module Homebrew
DEFAULT_PREFIX ||= if Homebrew::EnvConfig.force_homebrew_on_linux?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment