1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

Setup secrets, use switch instead of bool (#3269)

This commit is contained in:
Oscar Hinton 2023-09-14 14:39:13 +02:00 committed by GitHub
parent f080763b6c
commit 1fcf070765
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
#!/usr/bin/env pwsh #!/usr/bin/env pwsh
# Helper script for applying the same user secrets to each project # Helper script for applying the same user secrets to each project
param ( param (
[bool]$clear, [switch]$clear,
[Parameter(ValueFromRemainingArguments = $true, Position=1)] [Parameter(ValueFromRemainingArguments = $true, Position=1)]
$cmdArgs $cmdArgs
) )