From c9516dffaf28447b317bae080bdf79b5bb7dea5e Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 18 Feb 2024 09:56:17 -0500 Subject: Fix recently introduced pathing issue * "conda" and "wheels" directories are supposed to in the "packages" directory, not the $output_dir root --- src/deliverable.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/deliverable.c b/src/deliverable.c index c5b9150..9b5d94d 100644 --- a/src/deliverable.c +++ b/src/deliverable.c @@ -181,8 +181,8 @@ void delivery_init_dirs(struct Delivery *ctx) { path_store(&ctx->storage.output_dir, PATH_MAX, ctx->storage.root, "output"); path_store(&ctx->storage.delivery_dir, PATH_MAX, ctx->storage.output_dir, "delivery"); path_store(&ctx->storage.package_dir, PATH_MAX, ctx->storage.output_dir, "packages"); - path_store(&ctx->storage.conda_artifact_dir, PATH_MAX, ctx->storage.output_dir, "conda"); - path_store(&ctx->storage.wheel_artifact_dir, PATH_MAX, ctx->storage.output_dir, "wheels"); + path_store(&ctx->storage.conda_artifact_dir, PATH_MAX, ctx->storage.package_dir, "conda"); + path_store(&ctx->storage.wheel_artifact_dir, PATH_MAX, ctx->storage.package_dir, "wheels"); if (!ctx->storage.mission_dir) { path_store(&ctx->storage.mission_dir, PATH_MAX, globals.sysconfdir, "mission"); -- cgit