From 8938489b14864aff5571007875c5d7f704e6e15c Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Thu, 10 Mar 2022 22:46:18 +0000 Subject: [PATCH] test --- deps/build_local_sandbox.jl | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/deps/build_local_sandbox.jl b/deps/build_local_sandbox.jl index fb75d40..7387300 100644 --- a/deps/build_local_sandbox.jl +++ b/deps/build_local_sandbox.jl @@ -8,8 +8,14 @@ sandbox_src = joinpath(@__DIR__, "userns_sandbox.c") run(`cc -std=c99 -O2 -static -static-libgcc -g -o $(sandbox_path) $(sandbox_src)`) # Tell UserNSSandbox_jll to load our `sandbox` instead of the default artifact one +jll_uuid = Base.UUID("b88861f7-1d72-59dd-91e7-a8cc876a4984") set_preferences!( - Base.UUID("b88861f7-1d72-59dd-91e7-a8cc876a4984"), + jll_uuid, "sandbox_path" => sandbox_path; force=true, ) +@show Base.active_project() +run(`ls -la $(dirname(Base.active_project()))`) +@show load_preference(jll_uuid, "sandbox_path") +@info("build done") +