diff options
Diffstat (limited to 'public/tools/make_app/src/CommandLine.cc')
| -rw-r--r-- | public/tools/make_app/src/CommandLine.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/public/tools/make_app/src/CommandLine.cc b/public/tools/make_app/src/CommandLine.cc index f2f4f26d..10705598 100644 --- a/public/tools/make_app/src/CommandLine.cc +++ b/public/tools/make_app/src/CommandLine.cc @@ -22,24 +22,24 @@ int main(int argc, char* argv[]) std::cout << "make_app: Framework/Application Creation Tool.\n"; std::cout << "make_app: © Amlal EL Mahrouss, All rights reserved.\n"; - std::cout << "make_app: -app: Application directory.\n"; - std::cout << "make_app: -steps: Steps (Setup pages) directory.\n"; - std::cout << "make_app: -fwrk: Framework directory.\n"; + std::cout << "make_app: -a: Application format.\n"; + std::cout << "make_app: -s: Steps (Setup pages) format.\n"; + std::cout << "make_app: -f: Framework format.\n"; return EXIT_SUCCESS; } - if (strcmp(argv[i], "-app") == 0) + if (strcmp(argv[i], "-a") == 0) { ext = kAppExtension; continue; } - else if (strcmp(argv[i], "-steps") == 0) + else if (strcmp(argv[i], "-s") == 0) { ext = kStepsExtension; continue; } - else if (strcmp(argv[i], "-fwrk") == 0) + else if (strcmp(argv[i], "-f") == 0) { ext = kFKExtension; continue; |
