You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AWS SSO CLI Version 1.9.10 -- Copyright 2021-2022 Aaron Turner
11ec65288f78702a5e80078c04e0ef8b4ac7cb67 (v1.9.10) built at 2023-03-04T03:10:06+0000
Describe the bug:
Installation through the wizard of completion in fish errors out on every TAB.
To Reproduce:
aws-sso
aws-sso console ~/.config/fish/completions/aws-sso.fish (line 2): Missing end to balance this function definition
function __complete_aws-sso
^~~~~~~^
from sourcing file ~/.config/fish/completions/aws-sso.fish
source: Error while reading file '/home/dfroberg/.config/fish/completions/aws-sso.fish'
Expected behavior:
Working completion
Desktop (please complete the following information):
OS: Ubuntu
Version 22.04
** Manual fix:**
nano ~/.config/fish/completions/aws-sso.fish
add end on blank line above # END_AWS_SSO_CLI
Save and close
File should look like;
cat ~/.config/fish/completions/aws-sso.fish
# BEGIN_AWS_SSO_CLI
function __complete_aws-sso
set -lx COMP_LINE (commandline -cp)
test -z (commandline -ct)
and set COMP_LINE "$COMP_LINE "
/home/linuxbrew/.linuxbrew/Cellar/aws-sso-cli/1.9.10/bin/aws-sso
end
# END_AWS_SSO_CLI
The text was updated successfully, but these errors were encountered:
Output of
aws-sso version
:Describe the bug:
Installation through the wizard of completion in fish errors out on every TAB.
To Reproduce:
Expected behavior:
Working completion
Desktop (please complete the following information):
** Manual fix:**
~/.config/fish/completions/aws-sso.fish
end
on blank line above# END_AWS_SSO_CLI
File should look like;
The text was updated successfully, but these errors were encountered: