Skip to content

Commit

Permalink
Fix the path where we find skip files
Browse files Browse the repository at this point in the history
This should unbreak the cronjob.  I think I broke this in #1384.  Whoops!
  • Loading branch information
Tony Tung committed Jul 2, 2019
1 parent 7b7bb69 commit e1cb275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebooks/subdir.mk
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ regenerate-ipynb: $(ipynb_regenerate_targets)
regenerate-py: $(py_regenerate_targets)

$(py_run_targets): %.py :
[ -e $*.py.skip ] || $(PYTHON) $(pypath)/$*.py
[ -e $(pypath)/$*.py.skip ] || $(PYTHON) $(pypath)/$*.py

$(py_files): %.py :
[ -e $*.py.skip ] || $(PYTHON) $*.py
Expand Down

0 comments on commit e1cb275

Please sign in to comment.