Skip to content

Commit

Permalink
Fixed incorrect automatic variable used (#1565)
Browse files Browse the repository at this point in the history
$@ is the name of the target being generated, and $^ are the dependencies

Co-authored-by: Louis-Dupont <35190946+Louis-Dupont@users.noreply.github.com>
(cherry picked from commit 43f8bea)
  • Loading branch information
BloodAxe committed Oct 26, 2023
1 parent 458787a commit 693c7b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ NOTEBOOKS = src/super_gradients/examples/model_export/models_export.ipynb

# This Makefile target runs notebooks listed below and converts them to markdown files in documentation/source/
run_and_convert_notebooks_to_docs: $(NOTEBOOKS)
jupyter nbconvert --to markdown --output-dir="documentation/source/" --execute $@
jupyter nbconvert --to markdown --output-dir="documentation/source/" --execute $^

# This Makefile target runs notebooks listed below and converts them to markdown files in documentation/source/
check_notebooks_version_match: $(NOTEBOOKS)
python tests/verify_notebook_version.py $@
python tests/verify_notebook_version.py $^

0 comments on commit 693c7b5

Please sign in to comment.