feat: create project dirs
icyphox icyph0x@protonmail.com
Fri, 16 Mar 2018 09:03:36 +0530
1 files changed,
4 insertions(+),
1 deletions(-)
jump to
M
vite.py
→
vite.py
@@ -21,6 +21,9 @@ project_path = args.path[0]
try: os.makedirs(project_path) + os.makedirs(project_path + '/pages') + os.makedirs(project_path + '/build') + print('Created project directory at %s.' % (project_path)) except OSError as e: - if e.errno != errno.EEXIST + if e.errno != errno.EEXIST: raise