diff options
| author | Mikkel Hjortshøj <fyoucon@gmail.com> | 2019-09-08 01:10:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-08 01:10:54 +0200 |
| commit | bc34083c9c60397b88da0f594364791b5571ba61 (patch) | |
| tree | 2b78a8d427ee0fdd73e766dfec48387f7568b0d0 /src/main.cpp | |
| parent | 08dd8414c1f7c97e91f082cdace0bcea56603df4 (diff) | |
Also return on unix
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 00490bce7..a75b711f0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1366,7 +1366,7 @@ int main(int arg_count, char **arg_ptr) { //NOTE(thebirk): This whole thing is a little leaky String complete_path = concatenate_strings(heap_allocator(), output_base, output_ext); complete_path = path_to_full_path(heap_allocator(), complete_path); - system_exec_command_line_app("odin run", "\"%.*s\" %.*s", LIT(complete_path), LIT(run_args_string)); + return system_exec_command_line_app("odin run", "\"%.*s\" %.*s", LIT(complete_path), LIT(run_args_string)); } #endif |