aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-12 02:11:32 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-12 02:11:32 -0500
commit0cf88554050bfdb398e2131624fd7304507c1874 (patch)
treea469fa5c41f5c0294d9ccb6cf4e67f0ece907443
parent097535450b09bd255a36e2e957064d59d9b48b39 (diff)
Don't pipe output through bat
-rw-r--r--nextlang.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/nextlang.c b/nextlang.c
index 85cd3811..cc364660 100644
--- a/nextlang.c
+++ b/nextlang.c
@@ -121,8 +121,6 @@ int main(int argc, char *argv[])
ldlibs = heap_strf("%s %s", ldlibs, getenv("LDLIBS"));
const char *run = heap_strf("tcc %s %s -run -", cflags, ldlibs);
- if (verbose)
- run = heap_strf("%s | bat -P --file-name=STDOUT", run);
FILE *cc = popen(run, "w");
CORD_put(program, cc);
fclose(cc);