From df4f2fdd01a5736032953ce630a3c4a0077ecf75 Mon Sep 17 00:00:00 2001 From: Karolina Bogacka Date: Sat, 9 Aug 2025 12:27:46 +0200 Subject: [PATCH] Silence completions --- install.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index d002d97..f0a2e89 100755 --- a/install.sh +++ b/install.sh @@ -76,12 +76,14 @@ if ! echo "$PATH" | grep -q "$INSTALL_DIR"; then fi fi +# Silently install completions +nohup jelly-cli completions install > /dev/null 2>&1 +eval "$(jelly-cli completions install --env)" + # Link the binary to the installation directory if [ -f "$INSTALL_DIR/jelly-cli" ]; then echo "Installation successful! You can now use Jelly CLI by running 'jelly-cli'." else echo "Error: Installation failed. The binary was not found in the installation directory." exit 1 -fi - -jelly-cli completions install \ No newline at end of file +fi \ No newline at end of file