mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-03-05 20:49:04 -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
|
return
|
||||||
}
|
}
|
||||||
$poshVersion = & $executable --version
|
$poshVersion = & $executable --version
|
||||||
|
if ($poshVersion -eq "development") {
|
||||||
|
Write-Warning "omp development version detected"
|
||||||
|
return
|
||||||
|
}
|
||||||
if ($poshVersion -eq $Version) {
|
if ($poshVersion -eq $Version) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue