mirror of
https://github.com/dvorka/hstr.git
synced 2024-11-15 12:30:45 +08:00
Fixed #141 by removal of the double help listing.
This commit is contained in:
parent
a722292549
commit
b7f3be774a
3 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@ INSTALLATION
|
||||||
============
|
============
|
||||||
Install `hh` using [distribution](#distribution-installation),
|
Install `hh` using [distribution](#distribution-installation),
|
||||||
from [source code](#installation-from-source-code), on [Ubuntu](#ubuntu),
|
from [source code](#installation-from-source-code), on [Ubuntu](#ubuntu),
|
||||||
[Fedora/RHEL/CentOS](#fedorarhelcentos), [Debian/Mint](#debianmint),
|
[Fedora/RHEL/CentOS/ScientificLinux](#fedorarhelcentos), [Debian/Mint](#debianmint),
|
||||||
[Arch Linux](#arch-linux) or [Mac OS](#mac-os).
|
[Arch Linux](#arch-linux) or [Mac OS](#mac-os).
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,7 @@ Install HSTR:
|
||||||
* [Debian](INSTALLATION.md#debianmint)
|
* [Debian](INSTALLATION.md#debianmint)
|
||||||
* [Mint](INSTALLATION.md#debianmint)
|
* [Mint](INSTALLATION.md#debianmint)
|
||||||
* [Arch Linux](INSTALLATION.md#arch-linux)
|
* [Arch Linux](INSTALLATION.md#arch-linux)
|
||||||
|
* [Scientific Linux](#fedorarhelcentos)
|
||||||
* [Mac OS](INSTALLATION.md#mac-os)
|
* [Mac OS](INSTALLATION.md#mac-os)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -201,7 +201,7 @@ static const char *HELP_STRING=
|
||||||
"\n";
|
"\n";
|
||||||
|
|
||||||
static const char *VERSION_STRING=
|
static const char *VERSION_STRING=
|
||||||
"hh version \"1.17\""
|
"hh version \"1.18\""
|
||||||
"\n build \""__DATE__" " __TIME__"\""
|
"\n build \""__DATE__" " __TIME__"\""
|
||||||
"\n";
|
"\n";
|
||||||
|
|
||||||
|
@ -1196,7 +1196,6 @@ void hstr_getopt(int argc, char **argv, Hstr *hstr)
|
||||||
|
|
||||||
case '?':
|
case '?':
|
||||||
default:
|
default:
|
||||||
printf("Unrecognized option: '%s'", HELP_STRING);
|
|
||||||
printf("%s", HELP_STRING);
|
printf("%s", HELP_STRING);
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue