fix(installer): Use master in windows installer (#3421)

This commit is contained in:
LostNeophyte 2022-11-04 17:56:33 +01:00 committed by GitHub
parent c006598434
commit e10a8cca56
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
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
$ErrorActionPreference = "Stop" # exit when command fails
# set script variables
$LV_BRANCH = $LV_BRANCH ?? "rolling"
$LV_BRANCH = $LV_BRANCH ?? "master"
$LV_REMOTE = $LV_REMOTE ?? "lunarvim/lunarvim.git"
$INSTALL_PREFIX = $INSTALL_PREFIX ?? "$HOME\.local"

View file

@ -2,7 +2,7 @@
$ErrorActionPreference = "Stop" # exit when command fails
# set script variables
$LV_BRANCH = $LV_BRANCH ?? "rolling"
$LV_BRANCH = $LV_BRANCH ?? "master"
$LV_REMOTE = $LV_REMOTE ?? "lunarvim/lunarvim.git"
$INSTALL_PREFIX = $INSTALL_PREFIX ?? "$HOME\.local"
@ -60,4 +60,4 @@ function remove_lvim_dirs($force) {
}
}
main($args)
main($args)