diff options
author | opalmay <[email protected]> | 2023-02-17 13:52:15 +0200 |
---|---|---|
committer | opalmay <[email protected]> | 2023-02-24 17:18:10 +0200 |
commit | 5ca6a2b63a472bb79e6ea8f365196a0a47512044 (patch) | |
tree | 55e4609224783ff9981eb5789a0bc2366f46f0b7 | |
parent | ab0ce62a65719567725f4fbd5a9281b20b1371a5 (diff) |
fix: install bin path
-rwxr-xr-x | utils/installer/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/installer/install.sh b/utils/installer/install.sh index 2d448d0f..668c76ca 100755 --- a/utils/installer/install.sh +++ b/utils/installer/install.sh @@ -166,7 +166,7 @@ function main() { msg "$ADDITIONAL_WARNINGS" msg "Thank you for installing LunarVim!!" - echo "You can start it by running: $XDG_DATA_HOME/.local/bin/lvim" + echo "You can start it by running: $HOME/.local/bin/lvim" echo "Do not forget to use a font with glyphs (icons) support [https://github.com/ryanoasis/nerd-fonts]" } @@ -250,7 +250,7 @@ function validate_install_prefix() { function check_system_deps() { - validate_install_prefix "$XDG_DATA_HOME/.local" + validate_install_prefix "$HOME/.local" if ! command -v git &>/dev/null; then print_missing_dep_msg "git" |