1.0.1
This commit is contained in:
parent
654cc688cf
commit
986b8d62a7
@ -6,6 +6,8 @@
|
||||
- ℹ️ - Information
|
||||
- ♻️ - 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`
|
||||
- ♻️ - Changed the letter argument of the program to return version information from `s` to `i`
|
||||
|
@ -25,7 +25,7 @@ Usage:
|
||||
<system> - w|l|x (windows or linux or osx)
|
||||
|
||||
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,
|
||||
@ -66,7 +66,7 @@ Usage:
|
||||
<system> - w|l|x (windows or linux or osx)
|
||||
|
||||
Other:
|
||||
make-libs-string <version.json> s - to get info
|
||||
make-libs-string <version.json> i - to get version info
|
||||
```
|
||||
|
||||
Программа имеет два обязательных аргумента,
|
||||
|
@ -16,7 +16,7 @@ void generate_library_list(cJSON *input_json, cJSON *output_json, char output_sy
|
||||
|
||||
int main(int argc, char const *argv[])
|
||||
{
|
||||
if (argc <= 2 || argc > 3)
|
||||
if (argc != 3)
|
||||
{
|
||||
usage();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user