diff --git a/Program.cs b/Program.cs index fce5f6c..c926091 100644 --- a/Program.cs +++ b/Program.cs @@ -127,7 +127,7 @@ } var accessKey = context.ParseResult.GetValueForOption(accessKeyOption) ?? Environment.GetEnvironmentVariable("BUNNY_ACCESS_KEY") ?? ""; var profile = context.ParseResult.GetValueForOption(profileOption) ?? Environment.GetEnvironmentVariable("BUNNY_PROFILE") ?? ""; - var profileFilePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".bunny", "credentials.toml"); + var profileFilePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".bunny", "credentials"); var hasAccessKeyFlag = !string.IsNullOrEmpty(accessKey); var hasProfileFlag = !string.IsNullOrEmpty(profile); // access key (from any option source) overrides profile diff --git a/bunny-sdk.csproj b/bunny-sdk.csproj index be74a37..4b9e4bb 100644 --- a/bunny-sdk.csproj +++ b/bunny-sdk.csproj @@ -1,7 +1,7 @@ - 0.0.9 + 0.0.10 Exe net8.0 bunny_sdk_cli