Skip to content
Snippets Groups Projects
Commit 8cebb64e authored by Xu Cheng's avatar Xu Cheng
Browse files

auto disable sandbox for interactive shell


Closes Homebrew/homebrew#38792.

Signed-off-by: default avatarXu Cheng <xucheng@me.com>
parent 895983fe
No related branches found
No related tags found
No related merge requests found
......@@ -15,8 +15,12 @@ module Homebrew
#{formula.path}
].concat(ARGV.options_only)
if Sandbox.available? && ARGV.sandbox? && Sandbox.auto_disable?
Sandbox.print_autodisable_warning
end
Utils.safe_fork do
if Sandbox.available? && ARGV.sandbox?
if Sandbox.available? && ARGV.sandbox? && !Sandbox.auto_disable?
sandbox = Sandbox.new
formula.logs.mkpath
sandbox.record_log(formula.logs/"sandbox.postinstall.log")
......
......@@ -35,8 +35,12 @@ module Homebrew
#{f.path}
].concat(ARGV.options_only)
if Sandbox.available? && ARGV.sandbox? && Sandbox.auto_disable?
Sandbox.print_autodisable_warning
end
Utils.safe_fork do
if Sandbox.available? && ARGV.sandbox?
if Sandbox.available? && ARGV.sandbox? && !Sandbox.auto_disable?
sandbox = Sandbox.new
f.logs.mkpath
sandbox.record_log(f.logs/"sandbox.test.log")
......
......@@ -486,8 +486,12 @@ class FormulaInstaller
#{formula.path}
].concat(build_argv)
if Sandbox.available? && ARGV.sandbox? && Sandbox.auto_disable?
Sandbox.print_autodisable_warning
end
Utils.safe_fork do
if Sandbox.available? && ARGV.sandbox?
if Sandbox.available? && ARGV.sandbox? && !Sandbox.auto_disable?
sandbox = Sandbox.new
formula.logs.mkpath
sandbox.record_log(formula.logs/"sandbox.build.log")
......
......@@ -8,6 +8,18 @@ class Sandbox
OS.mac? && File.executable?(SANDBOX_EXEC)
end
# there are times the sandbox cannot be used.
def self.auto_disable?
@auto_disable ||= ARGV.interactive? || ARGV.debug?
end
def self.print_autodisable_warning
unless @print_autodisable_warning
opoo "The sandbox cannot be used in debug or interactive mode."
@print_autodisable_warning = true
end
end
def initialize
@profile = SandboxProfile.new
end
......
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