fix issue with config file reading the wrong options
Some checks failed
AWS-Zig Build / build-zig-amd64-host (push) Failing after 14m17s
Some checks failed
AWS-Zig Build / build-zig-amd64-host (push) Failing after 14m17s
This commit is contained in:
parent
31240cd21e
commit
4df27142d0
1 changed files with 2 additions and 2 deletions
|
|
@ -412,8 +412,8 @@ fn getProfileCredentials(allocator: std.mem.Allocator, options: Profile) !?auth.
|
||||||
default_path = default_path orelse creds_file_path.home;
|
default_path = default_path orelse creds_file_path.home;
|
||||||
const config_file_path = try filePath(
|
const config_file_path = try filePath(
|
||||||
allocator,
|
allocator,
|
||||||
options.credential_file,
|
options.config_file,
|
||||||
"AWS_SHARED_CREDENTIALS_FILE",
|
"AWS_CONFIG_FILE",
|
||||||
default_path,
|
default_path,
|
||||||
"config",
|
"config",
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue