We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f3f991 commit e37aeecCopy full SHA for e37aeec
install.sh
@@ -76,12 +76,14 @@ if ! echo "$PATH" | grep -q "$INSTALL_DIR"; then
76
fi
77
78
79
+# Silently install completions
80
+nohup jelly-cli completions install > /dev/null 2>&1
81
+eval "$(jelly-cli completions install --env)"
82
+
83
# Link the binary to the installation directory
84
if [ -f "$INSTALL_DIR/jelly-cli" ]; then
85
echo "Installation successful! You can now use Jelly CLI by running 'jelly-cli'."
86
else
87
echo "Error: Installation failed. The binary was not found in the installation directory."
88
exit 1
-fi
-
-jelly-cli completions install
89
+fi
0 commit comments