Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/cli/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,8 @@ int main(int argc, const char* argv[])
if (result == WREN_RESULT_COMPILE_ERROR) return 65; // EX_DATAERR.
if (result == WREN_RESULT_RUNTIME_ERROR) return 70; // EX_SOFTWARE.

// flush all pipes before exiting
if (fflush(0)) { (void) fputs("Write error!\n", stderr); setExitCode(EXIT_FAILURE); }

return getExitCode();
}
2 changes: 1 addition & 1 deletion src/cli/vm.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ static char* rootDirectory = NULL;
static Path* wrenModulesDirectory = NULL;

// The exit code to use unless some other error overrides it.
int defaultExitCode = 0;
int defaultExitCode = EXIT_SUCCESS;

// Reads the contents of the file at [path] and returns it as a heap allocated
// string.
Expand Down