Fix typos
This commit is contained in:
parent
8478b5b6f8
commit
5a1006452b
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue