Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanJosipovic committed Nov 8, 2023
1 parent 7159130 commit 59e88f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/oidc-guard-tests/EndToEnd/Helm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace oidc_guard_tests.EndToEnd
{
public class Helm
{
private const string Version = "3.12.3";
private const string Version = "3.13.1";

public static string FileName { get; } = "helm" + (RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? ".exe" : "");

Expand Down Expand Up @@ -51,7 +51,7 @@ public static async Task DownloadClient()
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
await Cli.Wrap("chmod")
.WithArguments("+x ./helm")
.WithArguments("+x ./" + FileName)
.ExecuteAsync();
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/oidc-guard-tests/EndToEnd/Kind.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static async Task DownloadClient()
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
await Cli.Wrap("chmod")
.WithArguments("+x ./kind")
.WithArguments("+x ./" + FileName)
.ExecuteAsync();
}
}
Expand Down

0 comments on commit 59e88f2

Please sign in to comment.