all repos — py-vite @ a996e2b650d7706b066473c8dc0af4d6808226a0

the original vite, written in python

feat: create project dirs
icyphox icyph0x@protonmail.com
Fri, 16 Mar 2018 09:03:36 +0530
commit

a996e2b650d7706b066473c8dc0af4d6808226a0

parent

a1d2d677f74a6738f57cc8efd0fe4fe5abf2d4c8

1 files changed, 4 insertions(+), 1 deletions(-)

jump to
M vite.pyvite.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