Skip to content

Commit

Permalink
docs: fix typo in completion commands
Browse files Browse the repository at this point in the history
  • Loading branch information
oknozor committed Jun 15, 2021
1 parent d72c60e commit 80e4887
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,20 +98,20 @@ Example installing completions:
```
# Bash
$ cog generate-completions bash > ~/.local/share/bash-completion/completions/cog
$ coco generate-completions bash > ~ bash > ~/.local/share/bash-completion/completions/coco
$ coco generate-completions bash > ~/.local/share/bash-completion/completions/coco
# Bash (macOS/Homebrew)
$ cog generate-completions bash > ~ bash > $(brew --prefix)/etc/bash_completion.d/cog.bash-completion
$ coco generate-completions bash > ~ bash > $(brew --prefix)/etc/bash_completion.d/coco.bash-completion
$ cog generate-completions bash > $(brew --prefix)/etc/bash_completion.d/cog.bash-completion
$ coco generate-completions bash > $(brew --prefix)/etc/bash_completion.d/coco.bash-completion
# Fish
$ mkdir -p ~/.config/fish/completions
$ cog generate-completions bash > ~ fish > ~/.config/fish/completions/cog.fish
$ coco generate-completions bash > ~ fish > ~/.config/fish/completions/coco.fish
$ cog generate-completions fish > ~/.config/fish/completions/cog.fish
$ coco generate-completions fish > ~/.config/fish/completions/coco.fish
# Zsh
$ cog generate-completions bash > ~ zsh > ~/.zfunc/_cog
$ coco generate-completions bash > ~ zsh > ~/.zfunc/_coco
$ cog generate-completions zsh > ~/.zfunc/_cog
$ coco generate-completions zsh > ~/.zfunc/_coco
```

## Coco Commits
Expand Down
2 changes: 1 addition & 1 deletion aur
Submodule aur updated from 1d0330 to 99dd00
4 changes: 2 additions & 2 deletions ci/aur_bump.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
VERSION=$1

cd aur/cocogitto-bin/ || exit
cd aur/ || exit
sed -i "s/pkgver=.*/pkgver=$VERSION/g" PKGBUILD
updpkgsums
makepkg --printsrcinfo > .SRCINFO
git add .
git commit -m "chore(aur): update aur package version"
git commit -m "chore(aur): update aur package version to $VERSION"

0 comments on commit 80e4887

Please sign in to comment.