Fixed typo in abra ac bash output #145

Merged
decentral1se merged 1 commits from kawaiipunk/abra:main into main 2021-12-23 00:15:35 +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":