Skip to content

Commit bd5722e

Browse files
committed
improve docs and installer handling
1 parent 96d0a01 commit bd5722e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

install.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
# Source: https://github.com/kubero-dev/kubero-cli #
1010
# Binary Release: https://github.com/kubero-dev/kubero-cli/releases/latest #
1111
# License: Apache License 2.0 #
12+
# Usage: #
13+
# curl -fsSL get.kubero.dev | bash #
14+
# curl -fsSL get.kubero.dev | bash -s -- v1.10.0 #
15+
# bash <(curl -fsSL get.kubero.dev) v1.9.2 #
1216
################################################################################
1317

1418

@@ -55,9 +59,8 @@ if [ -f "/usr/local/bin/kubero" ]; then
5559
read -p "Do you want to replace it? [y/n] " replaceBinary
5660
echo
5761

58-
if [ "$replaceBinary" != "y" ]; then
62+
if [ "$replaceBinary" != "y" ] && [ "$replaceBinary" != "" ]; then
5963
echo "Aborting installation."
60-
echo $replaceBinary
6164
rm -rf "$temp_dir"
6265
exit 1
6366
fi
@@ -109,5 +112,6 @@ fi
109112
# Clean up the temporary directory
110113
rm -rf "$temp_dir"
111114

115+
echo
112116
echo "Kubero has been successfully installed."
113117
echo "Run 'kubero install' to create a kubernetes cluster."

0 commit comments

Comments
 (0)