1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix typos

This commit is contained in:
Dag Wieers 2017-11-07 17:45:07 +01:00 committed by GitHub
parent 8478b5b6f8
commit 5a1006452b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"