We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7544238 commit 18a60bbCopy full SHA for 18a60bb
main.go
@@ -34,11 +34,10 @@ func main() {
34
home := os.Getenv("HOME")
35
profileFileLocation := getenv("AWS_CONFIG_FILE", fmt.Sprintf("%s/.aws/config", home))
36
profiles := getProfiles(profileFileLocation)
37
- touch, err := touchFile(fmt.Sprintf("%s/.awsd", home))
+ err := touchFile(fmt.Sprintf("%s/.awsd", home))
38
if err != nil {
39
log.Fatal(err)
40
}
41
-
42
fmt.Printf(NoticeColor, "AWS Profile Switcher\n")
43
prompt := promptui.Select{
44
Label: fmt.Sprintf(PromptColor, "Choose a profile"),
0 commit comments