Skip to content

Commit

Permalink
fix(Update-KubeResource): remove && false
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfbecker committed Sep 2, 2018
1 parent a4ec08a commit 9686cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UpdateKubeResourceCmdlet.cs
Expand Up @@ -64,7 +64,7 @@ public sealed class UpdateKubeResourceCmdlet : KubeApiCmdlet {
}));

// Send patch to server
if (ShouldProcess($"Sending patch for {kind} \"{name}\" in namespace \"{kubeNamespace}\"", $"Send patch for {kind} \"{name}\" in namespace \"{kubeNamespace}\"?", "Confirm") && false) {
if (ShouldProcess($"Sending patch for {kind} \"{name}\" in namespace \"{kubeNamespace}\"", $"Send patch for {kind} \"{name}\" in namespace \"{kubeNamespace}\"?", "Confirm")) {
var result = await client.Dynamic().Patch(
name: name,
kind: kind,
Expand Down

0 comments on commit 9686cc1

Please sign in to comment.