From cb7a343caf0a84c1c5b1ebde4b8845e2fced9f35 Mon Sep 17 00:00:00 2001 From: Morten Vassvik Date: Thu, 1 Mar 2018 12:58:57 +0100 Subject: Fixed '_alloc_command_line_arguments()' in os_linux.odin to use the new cstrings, and made 'odin run' use the full executable path. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index f2fde5dc8..1e852102b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -983,7 +983,7 @@ int main(int arg_count, char **arg_ptr) { remove_temp_files(output_base); if (run_output) { - system_exec_command_line_app("odin run", false, "%.*s", LIT(output_base)); + system_exec_command_line_app("odin run", false, "%s/%.*s", cwd, LIT(output_base)); } #endif -- cgit v1.2.3