Skip to content

Commit

Permalink
Fix to find icepack directory
Browse files Browse the repository at this point in the history
  • Loading branch information
danshapero committed Nov 1, 2023
1 parent f6fabaa commit d68723d
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 @@ -2,7 +2,7 @@

# Find all of the notebooks by searching the `notebooks` directory of icepack
# for anything that ends with `.ipynb` and isn't a directory and sort them
ICEPACK:=$(shell python3 -m pip show icepack | grep "Location:" | cut -d" " -f2)
ICEPACK:=$(shell python3 -m pip show icepack | grep "Editable project location:" | cut -d" " -f4)
NOTEBOOK_FILES:=$(shell find $(ICEPACK)/notebooks -not -path '*/\.*' -type f -name '*\.ipynb' | sort)

# Make a target containing all of the imported, executed demos; to get any
Expand Down

0 comments on commit d68723d

Please sign in to comment.