Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #221 from luvit/add-exit-code
luvit: add process.exitCode
  • Loading branch information
philips committed May 14, 2012
2 parents 3fad442 + f2d1ae8 commit 5befa91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions examples/exit-code.lua
@@ -0,0 +1,3 @@
-- exit luvit with exit code 3 in the event of a pre-mature
-- event loop exit
process.exitCode = 3
2 changes: 1 addition & 1 deletion lib/luvit/luvit.lua
Expand Up @@ -313,4 +313,4 @@ end, traceback))
-- Start the event loop
native.run()
-- trigger exit handlers and exit cleanly
process.exit(0)
process.exit(process.exitCode or 0)

0 comments on commit 5befa91

Please sign in to comment.