diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-06-20 11:49:01 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-06-20 11:49:01 +0200 |
commit | ab4346ebbfef44db857321d74bc0c31e03a72514 (patch) | |
tree | 4edf0e5a5bfba724fe1fb520cc71ab60317aae59 | |
parent | d048a327890851f37c8a0d0b8522cb8064ad7cfc (diff) | |
download | postgresql-ab4346ebbfef44db857321d74bc0c31e03a72514.tar.gz postgresql-ab4346ebbfef44db857321d74bc0c31e03a72514.zip |
pg_combinebackup: Fix small mistake in --help output
It was not showing that the --output option takes an argument.
-rw-r--r-- | src/bin/pg_combinebackup/pg_combinebackup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_combinebackup/pg_combinebackup.c b/src/bin/pg_combinebackup/pg_combinebackup.c index 20bb1ab9195..01d7fb98e79 100644 --- a/src/bin/pg_combinebackup/pg_combinebackup.c +++ b/src/bin/pg_combinebackup/pg_combinebackup.c @@ -751,7 +751,7 @@ help(const char *progname) printf(_(" -d, --debug generate lots of debugging output\n")); printf(_(" -n, --dry-run do not actually do anything\n")); printf(_(" -N, --no-sync do not wait for changes to be written safely to disk\n")); - printf(_(" -o, --output output directory\n")); + printf(_(" -o, --output=DIRECTORY output directory\n")); printf(_(" -T, --tablespace-mapping=OLDDIR=NEWDIR\n" " relocate tablespace in OLDDIR to NEWDIR\n")); printf(_(" --clone clone (reflink) instead of copying files\n")); |