diff options
author | Jakpat Mingmongkolmitr <[email protected]> | 2021-10-01 14:04:27 +0700 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-01 09:04:27 +0200 |
commit | 52dd273ca9bc552c9bacbdbf697818e75ee993d7 (patch) | |
tree | e9ca8b2f127cc7e47569d740faf15868b1b69163 /utils/installer/install.sh | |
parent | e270bdbd6f9adfd9ae471512c63c3283798481f1 (diff) |
fix(installer): fix ARGS_LOCAL condition (#1649)
Diffstat (limited to 'utils/installer/install.sh')
-rwxr-xr-x | utils/installer/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/installer/install.sh b/utils/installer/install.sh index d4daf55a..972534bd 100755 --- a/utils/installer/install.sh +++ b/utils/installer/install.sh @@ -135,7 +135,7 @@ EOF echo "Updating LunarVim" update_lvim else - if [ -n "$ARGS_LOCAL" ]; then + if [ "$ARGS_LOCAL" -eq 1 ]; then link_local_lvim else clone_lvim |