From 25ea721c7ce1064b854ca928a9d920f333fe66dc Mon Sep 17 00:00:00 2001 From: Josh Day Date: Mon, 1 Apr 2024 09:29:41 -0400 Subject: [PATCH] try fix windows ci --- src/DepotDelivery.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DepotDelivery.jl b/src/DepotDelivery.jl index 73860eb..c7ae5bf 100644 --- a/src/DepotDelivery.jl +++ b/src/DepotDelivery.jl @@ -75,8 +75,8 @@ startup_script(name) = """ #-----------------------------------------------------------------------------# test function test(depot_path::String) script = """ - @info "Loading the depot_startup.jl script" - include("$(joinpath(depot_path, "config", "depot_startup.jl"))") + @info "DepotDelivery.test: Loading the depot_startup.jl script" + include(raw"$(joinpath(depot_path, "config", "depot_startup.jl"))") """ process = run(`$(Base.julia_cmd()) -e $script`) process.exitcode == 0