diff options
| author | dacctal <dacctal@symlinx.net> | 2026-05-29 09:48:35 +0000 |
|---|---|---|
| committer | dacctal <dacctal@symlinx.net> | 2026-05-29 09:48:35 +0000 |
| commit | e290d6a2ba0375791ad4ba191496d4a036943758 (patch) | |
| tree | 734fb90af78babd159887abc7ac5b3fea4ef7a09 /src | |
| parent | 9c04660cef3408f538792e1602eda1a2e2a9e779 (diff) | |
attempting quiet build target
Diffstat (limited to 'src')
| -rw-r--r-- | src/cla_parse.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cla_parse.c b/src/cla_parse.c index faa9341..3a5985a 100644 --- a/src/cla_parse.c +++ b/src/cla_parse.c @@ -49,6 +49,9 @@ void cla_parse(int argc, char **argv) { if (argv[i + 2]) { pkg = create_pkg(argv[i + 1], argv[i + 2]); build(pkg); + } else if (!is_verbose) { + pkg = create_pkg(argv[i + 1], "quiet"); + build(pkg); } else { pkg = create_pkg(argv[i + 1], "default"); build(pkg); |
