aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-03-03 10:26:25 +0000
committergingerBill <bill@gingerbill.org>2018-03-03 10:26:25 +0000
commit08c87e57f878130fd10d8845115070e8bce2a588 (patch)
tree65fd3f90b22027873168954a35d9385163919b00 /src/main.cpp
parentb21cdd5037d6a11d6b78f3b140b19f6b409d0dde (diff)
Remove cwd in `odin run` for Linux
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 1e852102b..f2fde5dc8 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/%.*s", cwd, LIT(output_base));
+ system_exec_command_line_app("odin run", false, "%.*s", LIT(output_base));
}
#endif