Add a version command line option.
This commit is contained in:
parent
949f5f6d24
commit
a005174e1a
1 changed files with 4 additions and 0 deletions
|
|
@ -51,6 +51,7 @@ Usage:
|
||||||
eris -h | --help
|
eris -h | --help
|
||||||
eris -i | --info
|
eris -i | --info
|
||||||
eris -a | --apt-install-tools
|
eris -a | --apt-install-tools
|
||||||
|
eris --version
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
# eris my_project
|
# eris my_project
|
||||||
|
|
@ -1132,6 +1133,9 @@ def check_arguments():
|
||||||
if arguments["--help"]:
|
if arguments["--help"]:
|
||||||
print(cmdline_help)
|
print(cmdline_help)
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
if arguments["--version"]:
|
||||||
|
print(eris.__version__)
|
||||||
|
sys.exit(0)
|
||||||
if arguments["--config"] is not None:
|
if arguments["--config"] is not None:
|
||||||
config_path = arguments["--config"]
|
config_path = arguments["--config"]
|
||||||
if not os.path.exists(config_path):
|
if not os.path.exists(config_path):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue