Skip to content

Commit

Permalink
Completion: add list-local
Browse files Browse the repository at this point in the history
  • Loading branch information
aaruni96 committed Jan 30, 2024
1 parent df71b0a commit f12297a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ _maps_completions()

# if completing the first word
if [ $cword -eq 1 ]; then
COMPREPLY=($(compgen -W "runtime remote package --help -h --command -d --deploy -l --list --repo --reset -r --run -u --uninstall --verbose" -- $cur))
COMPREPLY=($(compgen -W "runtime remote package --help -h --command -d --deploy -l --list --list-local --repo --reset -r --run -u --uninstall --verbose" -- $cur))
return
fi

Expand Down Expand Up @@ -53,7 +53,7 @@ _maps_completions()
fi

if [ $prev == "runtime" ]; then
COMPREPLY=($(compgen -W "-h --help --command -d --deploy -l --list --repo --reset -r --run -u --uninstall --verbose" -- $cur))
COMPREPLY=($(compgen -W "-h --help --command -d --deploy -l --list --list-local --repo --reset -r --run -u --uninstall --verbose" -- $cur))
return
fi

Expand Down

0 comments on commit f12297a

Please sign in to comment.