From 4f08c2a4202cc3de542f6e968c04e79f13471a1f Mon Sep 17 00:00:00 2001
From: ejolly <eshin.jolly@gmail.com>
Date: Fri, 8 Sep 2023 15:33:15 -0400
Subject: [PATCH] see why conda convert cant find tarball

---
 .github/workflows/Build.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml
index 6d736ae..b6302d7 100644
--- a/.github/workflows/Build.yml
+++ b/.github/workflows/Build.yml
@@ -94,11 +94,11 @@ jobs:
           conda config --show | grep bld_path
           conda info
           conda-build ./conda/ --python=$PY_VER -c https://conda.anaconda.org/conda-forge/ --verify
-          tarball=$(conda build --python=$PY_VER conda --output | tail -1)
+          tarball=$(conda-build --python=$PY_VER conda --output | tail -1)
+          echo "conda build tarball" $tarball
           if [[ $OS == "Linux" ]]; then \
               conda convert -p win-64 -o $CONDA_BLD_PATH $tarball; \
           fi
-          echo "conda build tarball" $tarball
           echo "{conda-tarball}={$tarball}" >> $GITHUB_OUTPUT
 
       # ------------------------------------------------------------