Skip to content

Commit

Permalink
fix: replace exa by exa
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoliwa committed Dec 8, 2023
1 parent cc36f10 commit 9201537
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/conjuring/spells/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
def completion_list(c: Context) -> None:
"""List existing shell completions."""
for var in COMPLETION_DIRS:
c.run(f"exa -l {var}")
c.run(f"eza -l {var}")


@task
Expand All @@ -24,7 +24,7 @@ def completion_install(c: Context, app: str) -> None:
"""
completion_file = f"{COMPAT_DIR}{app}.bash-completion"
c.run(f"_{app.upper()}_COMPLETE=bash_source {app} > {completion_file}")
c.run(f"exa -l {completion_file}")
c.run(f"eza -l {completion_file}")
c.run(f"bat {completion_file}")


Expand Down

0 comments on commit 9201537

Please sign in to comment.