File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 9
9
# Source: https://github.com/kubero-dev/kubero-cli #
10
10
# Binary Release: https://github.com/kubero-dev/kubero-cli/releases/latest #
11
11
# 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 #
12
16
# ###############################################################################
13
17
14
18
@@ -55,9 +59,8 @@ if [ -f "/usr/local/bin/kubero" ]; then
55
59
read -p " Do you want to replace it? [y/n] " replaceBinary
56
60
echo
57
61
58
- if [ " $replaceBinary " != " y" ]; then
62
+ if [ " $replaceBinary " != " y" ] && [ " $replaceBinary " != " " ] ; then
59
63
echo " Aborting installation."
60
- echo $replaceBinary
61
64
rm -rf " $temp_dir "
62
65
exit 1
63
66
fi
109
112
# Clean up the temporary directory
110
113
rm -rf " $temp_dir "
111
114
115
+ echo
112
116
echo " Kubero has been successfully installed."
113
117
echo " Run 'kubero install' to create a kubernetes cluster."
You can’t perform that action at this time.
0 commit comments