From b1c7791b2cf160e6514eee240973643c027ebf94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Buciu?= <62178141+vivere-dally@users.noreply.github.com> Date: Mon, 22 Jul 2024 00:49:47 +0300 Subject: [PATCH] Remove last zsh call in install.sh The call restarts zsh with the `-l` flag. In my case, I'm writing a script to bootstrap a new machine and this forces me to either put the ohmyzsh installation at the end, or to find some other way. I would like to either choose by a flag to run that, for now that's just a convenience feature. --- tools/install.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/install.sh b/tools/install.sh index e5f126915..5684eb5a2 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -549,8 +549,6 @@ EOF echo "${FMT_YELLOW}Run zsh to try it out.${FMT_RESET}" exit fi - - exec zsh -l } main "$@"