From 51805466e2fe9b4b7c14486517659a7436475e0d Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Mon, 23 Sep 2024 15:20:20 +0200 Subject: [PATCH] fmt --- examples/constructor-minimal/pixi.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/constructor-minimal/pixi.toml b/examples/constructor-minimal/pixi.toml index 14de03207..6bb2f2903 100644 --- a/examples/constructor-minimal/pixi.toml +++ b/examples/constructor-minimal/pixi.toml @@ -27,7 +27,7 @@ jaq = "*" # needed to get current platform mamba = "*" # needed for cross-architecturo solves [feature.build.tasks] -construct = """ +construct = { cmd = """ rm -rf dist/installer/$CC_PLATFORM && cat installer/construct.yaml.in > installer/construct.yaml && echo "environment_file: ./specs/installer_$(echo $CC_PLATFORM)_conda_spec.txt" @@ -37,7 +37,7 @@ construct = """ --cache-dir build/.cache/constructor --output-dir dist/installer/$CC_PLATFORM --conda-exe $(which mamba || where mamba) -""" +""", env = { CONDA_EXE = "$(which mamba || where mamba)" } } platform = "pixi info --json | jaq -r '.platform'" specs = "pixi project export conda-explicit-spec --environment installer ./installer/specs"