mirror of
https://github.com/gsi-upm/sitc
synced 2025-08-23 18:22:19 +00:00
Add Makefile
This commit is contained in:
10
Makefile
Normal file
10
Makefile
Normal file
@@ -0,0 +1,10 @@
|
||||
FOLDER:=.
|
||||
|
||||
exec:
|
||||
find $(FOLDER) -iname '*.ipynb' -print0 | xargs -n 1 -0 sh -c 'jupyter nbconvert --execute --ClearOutputPreprocessor.enabled=True --inplace $$0 || exit 255'
|
||||
|
||||
clean:
|
||||
find $(FOLDER) -iname '*.ipynb' -print0 | xargs -n 1 -0 sh -c 'jupyter nbconvert --ClearOutputPreprocessor.enabled=True --inplace $$0 || exit 255'
|
||||
|
||||
|
||||
.PHONY: exec clean
|
Reference in New Issue
Block a user