diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-01-08 02:08:05 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-01-08 02:08:05 +0900 |
| commit | ca88e6a04cae4eea7b1a3ae849f4a0cc44fecb95 (patch) | |
| tree | 021436684bb5aea0842a93f594ce219fc330a438 /src | |
| parent | b674653fa2d911b65a14062498a006e47f2a80ba (diff) | |
| download | ducc-ca88e6a04cae4eea7b1a3ae849f4a0cc44fecb95.tar.gz ducc-ca88e6a04cae4eea7b1a3ae849f4a0cc44fecb95.tar.zst ducc-ca88e6a04cae4eea7b1a3ae849f4a0cc44fecb95.zip | |
feat: ignore -f* and -m* flags
Diffstat (limited to 'src')
| -rw-r--r-- | src/cli.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -27,7 +27,11 @@ CliArgs* parse_cli_args(int argc, char** argv) { break; } char c = argv[i][1]; - if (c == 'g') { + if (c == 'f') { + // ignore + } else if (c == 'g') { + // ignore + } else if (c == 'm') { // ignore } else if (c == 'O') { // ignore |
