diff options
author | LostNeophyte <[email protected]> | 2022-11-04 17:56:33 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-11-04 12:56:33 -0400 |
commit | e10a8cca56e19692cf89498811bc89393fdb68e1 (patch) | |
tree | 7242d19d500e291d62f861465171c45067477cc5 /utils | |
parent | c00659843412fb201016fb06a39256a0feb09fe9 (diff) |
fix(installer): Use master in windows installer (#3421)
Diffstat (limited to 'utils')
-rw-r--r-- | utils/installer/install.ps1 | 2 | ||||
-rw-r--r-- | utils/installer/uninstall.ps1 | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/utils/installer/install.ps1 b/utils/installer/install.ps1 index 320e377c..7b07c86f 100644 --- a/utils/installer/install.ps1 +++ b/utils/installer/install.ps1 @@ -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" diff --git a/utils/installer/uninstall.ps1 b/utils/installer/uninstall.ps1 index 2de21037..ff8a8d47 100644 --- a/utils/installer/uninstall.ps1 +++ b/utils/installer/uninstall.ps1 @@ -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)
\ No newline at end of file +main($args)
|