fix: invoke create_template() in create_project()
Anirudh icyph0x@protonmail.com
Fri, 13 Apr 2018 21:12:25 +0530
1 files changed,
3 insertions(+),
0 deletions(-)
jump to
M
vite/vite.py
→
vite/vite.py
@@ -41,9 +41,11 @@ os.mkdir(os.path.join(path, 'templates'))
create_config(path) os.symlink(os.path.join(cur_path, 'make.py'), os.path.join(abs_path, '.make.py')) + create_template(path) print(good('Created project directory at %s.' % (abs_path))) except FileExistsError: print(bad('Error: specified path exists.')) + def create_config(path):@@ -78,6 +80,7 @@ <footer>
{{ footer }} <p> © {{ author }} </p> <footer> + """)