Skip to content

Commit

Permalink
fix: wget command to download to right location during installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Optixal committed May 12, 2022
1 parent 94804cd commit de83d48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion convenience/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ fi

# Install neovim
echo "[*] Installing neovim $NEOVIM_VERSION ..."
wget "https://github.com/neovim/neovim/releases/download/v$NEOVIM_VERSION/nvim-linux64.tar.gz" -P /tmp
wget "https://github.com/neovim/neovim/releases/download/v$NEOVIM_VERSION/nvim-linux64.tar.gz" -O /tmp/nvim-linux64.tar.gz
mkdir -p ~/.local/bin
tar xf /tmp/nvim-linux64.tar.gz -C ~/.local
ln -sf $(readlink -f ~/.local/nvim-linux64/bin/nvim) ~/.local/bin/nvim
Expand Down

0 comments on commit de83d48

Please sign in to comment.