all repos — py-vite @ 38f528e99404b8c1d6f38bb4c64db47943d4ff3d

the original vite, written in python

fix(make.py): add http.serve_close() to actually close the port
Anirudh icyph0x@pm.me
Sun, 15 Apr 2018 17:49:35 +0530
commit

38f528e99404b8c1d6f38bb4c64db47943d4ff3d

parent

6abb6ce5b8516d599e6a7327c75ce1e02ff58872

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

jump to
M make.pymake.py

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

httpd.serve_forever() except KeyboardInterrupt: print(info('Stopping server.')) + http.server_close() sys.exit(1) def main():