From 4631fbcf4cf9c4ed591b053a8b86a707dda08873 Mon Sep 17 00:00:00 2001 From: ashincoder <83629316+ashincoder@users.noreply.github.com> Date: Tue, 29 Jun 2021 15:09:03 +0530 Subject: [PATCH] removed -e flags in script I removed -e flags of echoes as it not useful in the posix script --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index f4225e9..0fc6888 100755 --- a/install.sh +++ b/install.sh @@ -16,10 +16,10 @@ if [ -d ~/.local/share/nvim/site/pack/packer ]; then rm -rf ~/.local/share/nvim/site/pack fi -echo -e "\n=> Installing packer" +echo "\n=> Installing packer" git clone https://github.com/wbthomason/packer.nvim \ ~/.local/share/nvim/site/pack/packer/start/packer.nvim -echo -e "=> packer installed!" +echo "=> packer installed!" echo "Linking config" echo "old nvim config will be changed to nvim.bak if exists! :0" @@ -48,8 +48,8 @@ else sed -i "s/bash/$shellname/g" ~/.config/nvim/lua/mappings.lua fi -echo -e "\n=> shell changed to $shellname on nvim successfully!" -echo -e "\n=> neovim will open with some errors , just press enter" && sleep 1 +echo "\n=> shell changed to $shellname on nvim successfully!" +echo "\n=> neovim will open with some errors , just press enter" && sleep 1 # install all plugins + compile them nvim +PackerSync