diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/deliverable.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/src/deliverable.c b/src/deliverable.c index 3f0efc1..e2df64a 100644 --- a/src/deliverable.c +++ b/src/deliverable.c @@ -212,12 +212,14 @@ void delivery_init_dirs(struct Delivery *ctx) {      path_store(&ctx->storage.build_recipes_dir, PATH_MAX, ctx->storage.build_dir, "recipes");      path_store(&ctx->storage.build_sources_dir, PATH_MAX, ctx->storage.build_dir, "sources");      path_store(&ctx->storage.build_testing_dir, PATH_MAX, ctx->storage.build_dir, "testing"); +    path_store(&ctx->storage.build_docker_dir, PATH_MAX, ctx->storage.build_dir, "docker");      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.package_dir, "conda");      path_store(&ctx->storage.wheel_artifact_dir, PATH_MAX, ctx->storage.package_dir, "wheels"); +    path_store(&ctx->storage.docker_artifact_dir, PATH_MAX, ctx->storage.package_dir, "docker");      if (!ctx->storage.mission_dir) {          path_store(&ctx->storage.mission_dir, PATH_MAX, globals.sysconfdir, "mission"); | 
