mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
Fix typos
This commit is contained in:
@@ -69,7 +69,7 @@ $arguments = ""
|
||||
|
||||
if ($include_volumes) {
|
||||
foreach ($volume in $include_volumes) {
|
||||
if ($volume.Length == 1) {
|
||||
if ($volume.Length -eq 1) {
|
||||
$arguments += " $($volume):"
|
||||
} else {
|
||||
$arguments += " $volume"
|
||||
@@ -82,7 +82,7 @@ if ($include_volumes) {
|
||||
if ($exclude_volumes) {
|
||||
$arguments += " /E"
|
||||
foreach ($volume in $exclude_volumes) {
|
||||
if ($volume.Length == 1) {
|
||||
if ($volume.Length -eq 1) {
|
||||
$arguments += " $($volume):"
|
||||
} else {
|
||||
$arguments += " $volume"
|
||||
|
||||
Reference in New Issue
Block a user