diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2024-06-06 13:37:22 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2024-06-06 13:37:22 +0200 |
commit | 4863341834073b05beb594410919f94da5a7bd0b (patch) | |
tree | e00a0b109046c2262a9904e8dc000b621a841d29 | |
parent | 2d28fd9b8076c21e7a046a2f6b6ed9ef696b2315 (diff) | |
download | kit-4863341834073b05beb594410919f94da5a7bd0b.zip |
[build] debug
-rwxr-xr-x | build.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -550,16 +550,16 @@ i32 main(i32 argc, c8 **argv) { } fflush(stdout); - printf(" .. clean"); fflush(stdout); + printf(" .. clean\n"); fflush(stdout); system(fmt("\"." DLM "%s" DLM "test_interprocess\" clean", destination)); - printf(" .. reader"); fflush(stdout); + printf(" .. reader\n"); fflush(stdout); if (OS == WINDOWS) - system(fmt("start "" /b \"." DLM "%s" DLM "test_interprocess\" reader", destination)); + system(fmt("start "" \"." DLM "%s" DLM "test_interprocess\" reader", destination)); else system(fmt("\"." DLM "%s" DLM "test_interprocess\" reader &", destination)); - printf(" .. writer"); fflush(stdout); + printf(" .. writer\n"); fflush(stdout); code = system(fmt("\"." DLM "%s" DLM "test_interprocess\" writer", destination)); - printf(" .. done"); fflush(stdout); + printf(" .. done\n"); fflush(stdout); if (code == 0) printf("interprocess - OK\n"); else { |