Fixes
+ ConvertTo-Zip: Added -MuteSkipped * sz-df sorting fixed + -PassThru added, defaulting output to Format-Table unless -PassThru switch is specified which will output the objects raw. * Edit-DockerCompose fixed duplicate 'AdditionalFiles' * dcup and dcreup fixed: added --remove-orphans
This commit is contained in:
parent
3d57308616
commit
e2fe1a8f06
5 changed files with 35 additions and 16 deletions
|
@ -7,6 +7,7 @@
|
|||
[string]$ZipOptions="-mm=Deflate -mfb=258 -mpass=15",
|
||||
[string]$MoveProcessedTo="done",
|
||||
[switch]$Flatten,
|
||||
[switch]$MuteSkipped,
|
||||
[switch]$Force
|
||||
)
|
||||
|
||||
|
@ -115,6 +116,7 @@ foreach( $local:srcFile in $srcSet ) {
|
|||
Move-Item @moveParams
|
||||
}
|
||||
|
||||
if( $ActionStatus -eq 'Skipped' -and $MuteSkipped ) { continue }
|
||||
[PSCustomObject]([ordered]@{
|
||||
Action = $ActionStatus
|
||||
SrcMoved = $(if($DonePath){ $true } else {$false})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue