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
|
@ -47,7 +47,7 @@ $local:FinalEditList = $editFiles | Where-Object {$_} | Sort-Object {
|
|||
$local:n = [System.IO.Path]::GetFileName($_)
|
||||
Join-Path [PSystem.IO.ath]::GetDirectoryName($_) "$(if( $n[0] -eq '.' ) { "9" } else { "1" })$n"
|
||||
}
|
||||
$FinalEditList = @() + $FinalEditList + @() + $AdditionalFiles
|
||||
$FinalEditList = (@() + $FinalEditList + @() + $AdditionalFiles) | Select-Object -Unique
|
||||
|
||||
Edit-TextFile $FinalEditList
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
[switch]$NoPull,
|
||||
[array]$PullParams,
|
||||
[array]$LogsParams,
|
||||
[array]$UpParams=@('-d'),
|
||||
[array]$UpParams=@('-d','--remove-orphans'),
|
||||
[Parameter(Position = 0, ValueFromRemainingArguments = $true)]
|
||||
[array]$Containers
|
||||
)
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
[switch]$NoPull,
|
||||
[array]$PullParams,
|
||||
[array]$LogsParams,
|
||||
[array]$UpParams=@('-d'),
|
||||
[array]$UpParams=@('-d','--remove-orphans'),
|
||||
[Parameter(Position = 0, ValueFromRemainingArguments = $true)]
|
||||
[array]$Containers
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue