Skip to content

Commit

Permalink
Convert remaining RECIPE_DIR variable to PYINSTALLER_CONDARC_DIR
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoesters committed Oct 1, 2024
1 parent c29e93e commit b9e68d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conda.exe.spec
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ elif sys.platform == "darwin":
# Add .condarc file to bundle to configure channels
# during the package building stage
if "PYINSTALLER_CONDARC_DIR" in os.environ:
condarc = os.path.join(os.environ["RECIPE_DIR"], ".condarc")
condarc = os.path.join(os.environ["PYINSTALLER_CONDARC_DIR"], ".condarc")
if os.path.exists(condarc):
datas.append((condarc, "."))

Expand Down

0 comments on commit b9e68d4

Please sign in to comment.