Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lerno committed Sep 6, 2023
1 parent 50e99b5 commit 075aba5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/compiler/compiler.c
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,7 @@ void compiler_compile(void)
printf("Launching %s...\n", output_exe);
int ret = system(platform_target.os == OS_TYPE_WIN32 ? output_exe : str_printf("./%s", output_exe));
printf("Program finished with exit code %d.\n", ret);
if (ret != 0) exit(ret);
}
}
else if (output_static)
Expand Down

0 comments on commit 075aba5

Please sign in to comment.