From 9aa60167d290550ba8f65f5fc8d112f58af96234 Mon Sep 17 00:00:00 2001 From: mencian Date: Wed, 2 Oct 2024 13:49:52 -0500 Subject: [PATCH] try copying files to /bin --- recipes/el_gato/meta.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes/el_gato/meta.yaml b/recipes/el_gato/meta.yaml index 108251d69176e..f9a17289ff46d 100644 --- a/recipes/el_gato/meta.yaml +++ b/recipes/el_gato/meta.yaml @@ -4,7 +4,7 @@ {% set user = "appliedbinf" %} package: - name: el_gato + name: {{ name }} version: {{ version }} source: @@ -15,9 +15,9 @@ build: number: 0 noarch: python script: + - mkdir -p $PREFIX/bin/ + - cp -rf el_gato/db/* $PREFIX/bin/ - {{ PYTHON }} -m pip install . -vvv --no-deps --no-build-isolation --no-cache-dir - - mkdir -p $PREFIX/bin/db - - cp el_gato/db/* $PREFIX/bin/db/ run_exports: - {{ pin_subpackage(name, max_pin='x') }}