fix: win installer syntax error (#3635)

* feat: check version

* fix
This commit is contained in:
LostNeophyte 2023-02-14 08:23:41 +01:00 committed by GitHub
parent fde46c4b16
commit 9b4c4ab6af
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,8 @@
#Requires -Version 7.1
$ErrorActionPreference = "Stop" # exit when command fails
if ($PSVersionTable.PSVersion -lt 7.1) {
Write-Error "Powershell version needs to be greater than 7.1!"
}
# set script variables
$LV_BRANCH = $LV_BRANCH ?? "master"
@ -231,7 +234,7 @@ function setup_lvim() {
function validate_lunarvim_files() {
Set-Alias lvim "$INSTALL_PREFIX\bin\lvim.ps1"
try {
$verify_version_cmd="if v:errmsg != \`"\`" | cquit | else | quit | endif"
$verify_version_cmd="if v:errmsg != `"`" | cquit | else | quit | endif"
Invoke-Command -ScriptBlock { lvim --headless -c 'LvimUpdate' -c "$verify_version_cmd" } -ErrorAction SilentlyContinue
}
catch {