Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
pg_combinebackup: Fix small mistake in --help output
authorPeter Eisentraut <peter@eisentraut.org>
Thu, 20 Jun 2024 09:49:01 +0000 (11:49 +0200)
committerPeter Eisentraut <peter@eisentraut.org>
Thu, 20 Jun 2024 09:49:01 +0000 (11:49 +0200)
It was not showing that the --output option takes an argument.

src/bin/pg_combinebackup/pg_combinebackup.c

index 20bb1ab919556b44320b2149921ba96dc4a9b062..01d7fb98e79d0d050609178c127d6d836929b5a3 100644 (file)
@@ -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"));