From 4df27142d0efa560bd13f14cef8298ee9bceafc8 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Mon, 2 Feb 2026 17:11:44 -0800 Subject: [PATCH] fix issue with config file reading the wrong options --- src/aws_credentials.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aws_credentials.zig b/src/aws_credentials.zig index cc8ad74..1c635d5 100644 --- a/src/aws_credentials.zig +++ b/src/aws_credentials.zig @@ -412,8 +412,8 @@ fn getProfileCredentials(allocator: std.mem.Allocator, options: Profile) !?auth. default_path = default_path orelse creds_file_path.home; const config_file_path = try filePath( allocator, - options.credential_file, - "AWS_SHARED_CREDENTIALS_FILE", + options.config_file, + "AWS_CONFIG_FILE", default_path, "config", );