From bbe474ead9ef521bfa155f23b13f99b09b646f94 Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Mon, 26 Aug 2024 12:30:24 +0200 Subject: [PATCH] chore: install ohmyzsh unattended --- bin/helpers/ohmyzsh.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/helpers/ohmyzsh.sh b/bin/helpers/ohmyzsh.sh index cbea93c..b941c3a 100755 --- a/bin/helpers/ohmyzsh.sh +++ b/bin/helpers/ohmyzsh.sh @@ -23,6 +23,7 @@ ensure_ohmyzsh_installed() { printfe "%s\n" "green" "$result" fi else - sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" + wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh + sh install.sh --unattended --keep-zshrc fi }