Compare commits

...

1 Commits
main ... main

Author SHA1 Message Date
KawaiiPunk 536c912113
Fixed typo in abra ac bash output 2021-12-22 21:45:55 +00:00
1 changed files with 2 additions and 2 deletions

View File

@ -77,9 +77,9 @@ Supported shells are as follows:
case "bash":
fmt.Println(fmt.Sprintf(`
# Run the following commands to install autocompletion
sudo mkdir /etc/bash/completion.d/
sudo mkdir /etc/bash_completion.d/
sudo cp %s /etc/bash_completion.d/abra
echo "source /etc/bash/completion.d/abra" >> ~/.bashrc
echo "source /etc/bash_completion.d/abra" >> ~/.bashrc
# And finally run "abra app ps <hit tab key>" to test things are working, you should see app names listed!
`, autocompletionFile))
case "zsh":