From 231110bf6690acf78650d6f9caa3463df87980a0 Mon Sep 17 00:00:00 2001 From: Josh Day Date: Mon, 19 Feb 2024 08:51:27 -0500 Subject: [PATCH] fix platform typo --- Project.toml | 2 +- src/DepotDelivery.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 97d5132..a50d289 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "DepotDelivery" uuid = "5c353f05-31b8-41b6-b09f-65e5456b8b1e" authors = ["Josh Day and contributors"] -version = "0.1.3" +version = "0.1.4" [deps] Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" diff --git a/src/DepotDelivery.jl b/src/DepotDelivery.jl index 0b6bed2..d55a4be 100644 --- a/src/DepotDelivery.jl +++ b/src/DepotDelivery.jl @@ -51,7 +51,7 @@ function build(path::String; platform = Base.BinaryPlatforms.HostPlatform()) cp(path, joinpath(depot, "dev", name)) Pkg.activate() - Pkg.instantiate() + Pkg.instantiate(; platform) open(io -> TOML.print(io, build_spec), joinpath(depot, "config", "depot_build.toml"), "w") open(io -> print(io, startup_script(name)), joinpath(depot, "config", "depot_startup.jl"), "w")