mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
use ConvertTo-Bool for the force parameter
This commit is contained in:
@@ -40,9 +40,9 @@ Else {
|
||||
Fail-Json $result "missing required argument: dest"
|
||||
}
|
||||
|
||||
$force = Get-Attr -obj $params -name "force" "no"
|
||||
$force = Get-Attr -obj $params -name "force" "no" | ConvertTo-Bool
|
||||
|
||||
If ($force -eq "yes" -or -not (Test-Path $dest)) {
|
||||
If ($force -or -not (Test-Path $dest)) {
|
||||
$client = New-Object System.Net.WebClient
|
||||
|
||||
Try {
|
||||
|
||||
Reference in New Issue
Block a user