diff --git a/clir/cli.py b/clir/cli.py index e3465b2..88eb7c6 100644 --- a/clir/cli.py +++ b/clir/cli.py @@ -60,7 +60,7 @@ def tags(grep: str = ""): table = CommandTable(grep=grep) table.show_tags() -@cli.command(help="Import 🤓") +@cli.command(help="Import commands from file 🤓") @click.option('-f', '--file', help="Search by grep") def imports(file: str = ""): init_config() @@ -73,7 +73,7 @@ def imports(file: str = ""): table = CommandTable() table.import_commands(import_file_path = file) -@cli.command(help="Export 😮‍💨") +@cli.command(help="Export commands to file 📤") @click.option('-t', '--tag', help="Search by tag") @click.option('-g', '--grep', help="Search by grep") def export(tag: str = "", grep: str = ""): diff --git a/pyproject.toml b/pyproject.toml index d830d12..60b4361 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "clir" -version = "0.8.0" +version = "0.8.1" description = "A clear and fast way to store and recover your commands" authors = ["Elkin Aguas "] license = "MIT License" @@ -24,4 +24,4 @@ build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] clir = "clir.cli:cli" -init_clir = 'clir.cli:init' +init_clir = 'clir.cli:init' \ No newline at end of file