From 6366cb556970dfdcfc30b0215e8c1608d0cd70c3 Mon Sep 17 00:00:00 2001 From: Kim Date: Thu, 16 Mar 2023 16:22:18 +0100 Subject: [PATCH] fixed deleting buckets method --- csharp/App/Backend/DataTypes/Methods/Installation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/App/Backend/DataTypes/Methods/Installation.cs b/csharp/App/Backend/DataTypes/Methods/Installation.cs index e27b3be67..f3ec67b80 100644 --- a/csharp/App/Backend/DataTypes/Methods/Installation.cs +++ b/csharp/App/Backend/DataTypes/Methods/Installation.cs @@ -62,7 +62,7 @@ public static class InstallationMethods .WithArguments(new[] { "Resources/s3cmd.py", "rb", $"s3://{installation.Id}-{salt}", "--access_key", - apiKey + apiKey, "--secret_key", secret }); var x = await cmd.ExecuteBufferedAsync(); return x.ExitCode == 0;