Skip to content

Commit

Permalink
Copy example folder recursively
Browse files Browse the repository at this point in the history
Side effect of #136
  • Loading branch information
dalito committed Feb 13, 2025
1 parent a2abc45 commit 494e28e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ compile-sheets:

# In future this will be done by conversion
gen-examples:
cp src/data/examples/* $(EXAMPLEDIR)
cp -r src/data/examples/* $(EXAMPLEDIR)

# generates all project files
{% if cookiecutter.use_schemasheets == "Yes" %}
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ _compile_sheets:
# Generate examples
_gen-examples:
mkdir -p {{exampledir}}
cp src/data/examples/* {{exampledir}}
cp -r src/data/examples/* {{exampledir}}

# Generate project files
_gen-project: _ensure_pymodel_dir _compile_sheets
Expand Down

0 comments on commit 494e28e

Please sign in to comment.