From 1fcf070765786933b7fbb73322d48d2c1e0053d6 Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Thu, 14 Sep 2023 14:39:13 +0200 Subject: [PATCH] Setup secrets, use switch instead of bool (#3269) --- dev/setup_secrets.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/setup_secrets.ps1 b/dev/setup_secrets.ps1 index e9903bf4dc25..5c807ee86bec 100644 --- a/dev/setup_secrets.ps1 +++ b/dev/setup_secrets.ps1 @@ -1,7 +1,7 @@ #!/usr/bin/env pwsh # Helper script for applying the same user secrets to each project param ( - [bool]$clear, + [switch]$clear, [Parameter(ValueFromRemainingArguments = $true, Position=1)] $cmdArgs )