mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
feat(pwsh): don't overwrite dev build
This commit is contained in:
parent
b29ebcd058
commit
6e91805aa7
|
@ -109,6 +109,10 @@ function Sync-PoshArtifacts {
|
|||
return
|
||||
}
|
||||
$poshVersion = & $executable --version
|
||||
if ($poshVersion -eq "development") {
|
||||
Write-Warning "omp development version detected"
|
||||
return
|
||||
}
|
||||
if ($poshVersion -eq $Version) {
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue