We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 856a1bb commit 9315f38Copy full SHA for 9315f38
main.go
@@ -36,10 +36,13 @@ func main() {
36
}
37
38
// Get credentials
39
- usr, _ := user.Current()
40
-
41
credentialsPath := os.Getenv("AWS_SHARED_CREDENTIALS_FILE")
42
if len(credentialsPath) == 0 {
+ usr, err := user.Current()
+ if err != nil {
43
+ fmt.Println("Error: Could not locate your home directory. Please set the AWS_SHARED_CREDENTIALS_FILE environment variable.")
44
+ os.Exit(1)
45
+ }
46
credentialsPath = fmt.Sprintf("%s/.aws/credentials", usr.HomeDir)
47
48
0 commit comments