@@ -20,29 +20,29 @@ endif
2020
2121.PHONY : gen-python gen-cpp gen-js gen-jupyter gen-rust
2222gen-python : # # regenerate the python template from scratch
23- mkdir -p ../python-template && cd ../python-template && rm -rf ./* && rm -rf .copier-answers.yml .gitignore .github .gitattributes
24- copier copy -w . ../python-template --data-file examples/python.yml
25- cd ../python-template && $(SED ) ' s#_src_path: .#_src_path: https://github.com/python-project-templates/base.git#g' ./.copier-answers.yml
23+ mkdir -p ../python-template && cd ../python-template && rm -rf ./* && rm -rf .copier-answers.yaml .gitignore .github .gitattributes
24+ copier copy -w . ../python-template --data-file examples/python.yaml
25+ cd ../python-template && $(SED ) ' s#_src_path: .#_src_path: https://github.com/python-project-templates/base.git#g' ./.copier-answers.yaml
2626
2727gen-cpp : # # regenerate the c++ template from scratch
28- mkdir -p ../python-template-cpp && cd ../python-template-cpp && rm -rf ./* && rm -rf .copier-answers.yml .gitignore .github .gitattributes
29- copier copy -w . ../python-template-cpp --data-file examples/cpp.yml
30- cd ../python-template-cpp && $(SED ) ' s#_src_path: .#_src_path: https://github.com/python-project-templates/base.git#g' ./.copier-answers.yml
28+ mkdir -p ../python-template-cpp && cd ../python-template-cpp && rm -rf ./* && rm -rf .copier-answers.yaml .gitignore .github .gitattributes
29+ copier copy -w . ../python-template-cpp --data-file examples/cpp.yaml
30+ cd ../python-template-cpp && $(SED ) ' s#_src_path: .#_src_path: https://github.com/python-project-templates/base.git#g' ./.copier-answers.yaml
3131
3232gen-js : # # regenerate the js template from scratch
33- mkdir -p ../python-template-js && cd ../python-template-js && rm -rf ./* && rm -rf .copier-answers.yml .gitignore .github .gitattributes
34- copier copy -w . ../python-template-js --data-file examples/js.yml
35- cd ../python-template-js && $(SED ) ' s#_src_path: .#_src_path: https://github.com/python-project-templates/base.git#g' ./.copier-answers.yml
33+ mkdir -p ../python-template-js && cd ../python-template-js && rm -rf ./* && rm -rf .copier-answers.yaml .gitignore .github .gitattributes
34+ copier copy -w . ../python-template-js --data-file examples/js.yaml
35+ cd ../python-template-js && $(SED ) ' s#_src_path: .#_src_path: https://github.com/python-project-templates/base.git#g' ./.copier-answers.yaml
3636
3737gen-jupyter : # # regenerate the jupyter template from scratch
38- mkdir -p ../python-template-jupyter && cd ../python-template-jupyter && rm -rf ./* && rm -rf .copier-answers.yml .gitignore .github .gitattributes
39- copier copy -w . ../python-template-jupyter --data-file examples/jupyter.yml
40- cd ../python-template-jupyter && $(SED ) ' s#_src_path: .#_src_path: https://github.com/python-project-templates/base.git#g' ./.copier-answers.yml
38+ mkdir -p ../python-template-jupyter && cd ../python-template-jupyter && rm -rf ./* && rm -rf .copier-answers.yaml .gitignore .github .gitattributes
39+ copier copy -w . ../python-template-jupyter --data-file examples/jupyter.yaml
40+ cd ../python-template-jupyter && $(SED ) ' s#_src_path: .#_src_path: https://github.com/python-project-templates/base.git#g' ./.copier-answers.yaml
4141
4242gen-rust : # # regenerate the rust template from scratch
43- mkdir -p ../python-template-rust && cd ../python-template-rust && rm -rf ./* && rm -rf .copier-answers.yml .gitignore .github .gitattributes
44- copier copy -w . ../python-template-rust --data-file examples/rust.yml
45- cd ../python-template-rust && $(SED ) ' s#_src_path: .#_src_path: https://github.com/python-project-templates/base.git#g' ./.copier-answers.yml
43+ mkdir -p ../python-template-rust && cd ../python-template-rust && rm -rf ./* && rm -rf .copier-answers.yaml .gitignore .github .gitattributes
44+ copier copy -w . ../python-template-rust --data-file examples/rust.yaml
45+ cd ../python-template-rust && $(SED ) ' s#_src_path: .#_src_path: https://github.com/python-project-templates/base.git#g' ./.copier-answers.yaml
4646
4747.PHONY : test-python test-cpp test-js test-jupyter test-rust
4848test-python :
0 commit comments