all repos — py-vite @ 2ce9d2634d489da1eddd623683973cb478f09d22

the original vite, written in python

fix(make.py): properly terminate server
Anirudh icyph0x@pm.me
Sun, 15 Apr 2018 22:35:29 +0530
commit

2ce9d2634d489da1eddd623683973cb478f09d22

parent

d56f048e8a7d577f1d49f9d08065cec78b02b104

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

jump to
M make.pymake.py

@@ -78,7 +78,7 @@ print(white('Ctrl+C') + ' to stop.')

httpd.serve_forever() except KeyboardInterrupt: print(info('Stopping server.')) - httpd.server_close() + httpd.socket.close() sys.exit(1)