Skip to content

Commit

Permalink
fix CONDA_ACTIVATE
Browse files Browse the repository at this point in the history
  • Loading branch information
phelps-sg committed Nov 6, 2023
1 parent 9d3d8b4 commit 1a47f8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CONDA_ENV_FILE_DEV=./environment.yml
CONDA_ENV_FILE_PRODUCTION=./environment-frozen.yml
CONDA_DIR=$(HOME)/miniforge3
CONDA_BIN=mamba
CONDA_ACTIVATE=source $(CONDA_DIR)/etc/profile.d/mamba.sh; $(CONDA_BIN) activate $(CONDA_ENV_NAME)
CONDA_ACTIVATE=source $(CONDA_DIR)/etc/profile.d/conda.sh; source $(CONDA_DIR)/etc/profile.d/mamba.sh; $(CONDA_BIN) activate $(CONDA_ENV_NAME)

book:
$(CONDA_ACTIVATE); jupyter-book build jupyter-book/
Expand Down

0 comments on commit 1a47f8f

Please sign in to comment.