From 48eea8dbd7b651cdc932b909c1b718bb9c3f94f4 Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Wed, 28 Feb 2024 15:26:15 -0500 Subject: [PATCH] setenv -> addenv (#3819) --- test/artifacts.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/artifacts.jl b/test/artifacts.jl index 24247446cb..2e75285e89 100644 --- a/test/artifacts.jl +++ b/test/artifacts.jl @@ -471,7 +471,7 @@ end # Test that if we load the package, it knows how to find its own artifact, # because it feeds the right `Platform` object through to `@artifact_str()` - cmd = setenv(`$(Base.julia_cmd()) --color=yes --project=$(ap_path) -e 'using AugmentedPlatform; print(get_artifact_dir("gooblebox"))'`, + cmd = addenv(`$(Base.julia_cmd()) --color=yes --project=$(ap_path) -e 'using AugmentedPlatform; print(get_artifact_dir("gooblebox"))'`, "JULIA_DEPOT_PATH" => join(Base.DEPOT_PATH, Sys.iswindows() ? ";" : ":"), "FLOOBLECRANK" => flooblecrank_status) using_output = chomp(String(read(cmd)))