This commit is contained in:
Alexander Popov 2022-09-13 23:31:10 +03:00
parent 654cc688cf
commit 986b8d62a7
Signed by: iiiypuk
GPG Key ID: D8C9B59A9F04A70C
3 changed files with 6 additions and 4 deletions

View File

@ -6,6 +6,8 @@
- - Information - - Information
- ♻️ - Edited - ♻️ - Edited
## ??/09/2022 - (**Current**) > This project use Semantic Versioning 2.0.0 https://semver.org/
## 13/09/2022 - (1.0.1)
- ✔️ - Fixed bad returned value of `assets_version` - ✔️ - Fixed bad returned value of `assets_version`
- ♻️ - Changed the letter argument of the program to return version information from `s` to `i` - ♻️ - Changed the letter argument of the program to return version information from `s` to `i`

View File

@ -25,7 +25,7 @@ Usage:
<system> - w|l|x (windows or linux or osx) <system> - w|l|x (windows or linux or osx)
Other: Other:
make-libs-string <version.json> s - to get info make-libs-string <version.json> i - to get version info
``` ```
Utility has two required arguments, Utility has two required arguments,
@ -66,7 +66,7 @@ Usage:
<system> - w|l|x (windows or linux or osx) <system> - w|l|x (windows or linux or osx)
Other: Other:
make-libs-string <version.json> s - to get info make-libs-string <version.json> i - to get version info
``` ```
Программа имеет два обязательных аргумента, Программа имеет два обязательных аргумента,

View File

@ -16,7 +16,7 @@ void generate_library_list(cJSON *input_json, cJSON *output_json, char output_sy
int main(int argc, char const *argv[]) int main(int argc, char const *argv[])
{ {
if (argc <= 2 || argc > 3) if (argc != 3)
{ {
usage(); usage();
} }