From 9c2a2824ca693ad06182b25a7b465c5a3808faf7 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Fri, 21 Feb 2025 16:35:52 +0900 Subject: [PATCH] Update README.md, usage text --- README.md | 2 +- src/parser.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6807a4b..32a3129 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ API calls. --no-abs-symlink : do not store absolute paths for symlinks --preserve-symlinks : preserve the symlink's path on archive creation instead of deriving abs/relative paths, ignores "--no-abs-symlink" (It is not recommended to use this option, as absolute-path-symlinks may be clobbered on extraction) --no-safe-links : keep symlinks that link to outside archive contents - --temp-files-dir : where to store temporary files created when compressing (defaults to current working directory) + --temp-files-dir : where to store temporary files created when compressing (defaults to same directory as output file) --write-version : Force write version file format (default 3) --chunk-min-size : minimum chunk size (default 4194304 or 4MiB) when using chunks (file formats v. 1 and up) --no-pre-sort-files : do NOT pre-sort files by size (by default enabled so that the first file is the largest) diff --git a/src/parser.c b/src/parser.c index 18e3257..efecdce 100644 --- a/src/parser.c +++ b/src/parser.c @@ -186,7 +186,7 @@ void simple_archiver_print_usage(void) { "contents\n"); fprintf(stderr, "--temp-files-dir : where to store temporary files created " - "when compressing (defaults to current working directory)\n"); + "when compressing (defaults to same directory as output file)\n"); fprintf(stderr, "--write-version : Force write version file format " "(default 3)\n"); -- 2.49.0