From c6c91e55dc20e74d114fa83cf2c3555189cfc07d Mon Sep 17 00:00:00 2001 From: Ivan Bushchik Date: Wed, 4 Jan 2023 12:06:55 +0300 Subject: [PATCH] tools/git.sh: fix editor configuration --- tools/git.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/git.sh b/tools/git.sh index 600c055..2562203 100755 --- a/tools/git.sh +++ b/tools/git.sh @@ -20,7 +20,7 @@ fi git config --global pull.rebase false read -p "Enter your preferred editor (default: nvim): " GITEDITOR -if [ $GITEDITOR = ""] +if [ $GITEDITOR == "" ] then GITEDITOR="nvim" fi