From 3c987311c8a86d9b1c4306fa8a7aa4f46eec4ade Mon Sep 17 00:00:00 2001 From: pika Date: Sun, 11 May 2025 12:54:12 +0200 Subject: [PATCH] wip --- neovim.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/neovim.sh b/neovim.sh index 399443a..261ce39 100644 --- a/neovim.sh +++ b/neovim.sh @@ -80,7 +80,12 @@ fi } - installBuildDependencies - cloneSources - makeInstall + case "$1" in + --silent | -s) ;; + *) + installBuildDependencies + cloneSources + makeInstall + ;; + esac }