Skip to content

Commit 9315f38

Browse files
committed
Add a better error message in case the home directory can't be located.
1 parent 856a1bb commit 9315f38

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

main.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,13 @@ func main() {
3636
}
3737

3838
// Get credentials
39-
usr, _ := user.Current()
40-
4139
credentialsPath := os.Getenv("AWS_SHARED_CREDENTIALS_FILE")
4240
if len(credentialsPath) == 0 {
41+
usr, err := user.Current()
42+
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+
}
4346
credentialsPath = fmt.Sprintf("%s/.aws/credentials", usr.HomeDir)
4447
}
4548

0 commit comments

Comments
 (0)