Updated Pull-ViaAnsible to allow Path
it's also a OneLiner output by default
This commit is contained in:
parent
a7ac392886
commit
1b62fd1114
|
@ -1,3 +1,10 @@
|
|||
[CmdletBinding()]param([string[]]$Remotes = 'All')
|
||||
[CmdletBinding()]param(
|
||||
[Parameter(mandatory)]
|
||||
[string]$RemotePath,
|
||||
[switch]$NotOneLine,
|
||||
[string[]]$Remotes = 'All'
|
||||
)
|
||||
|
||||
Invoke-ViaAnsible -Command "cd $RemotePath",'Write-Output "$PWD `t"','git pull' -Remotes:$($Remotes.ToLower()) -OneLine:$(-not $NotOneLine)
|
||||
|
||||
|
||||
Invoke-ViaAnsible -Command "git pull" -Remotes:$($Remotes.ToLower())
|
||||
|
|
Loading…
Reference in New Issue