Skip to content

Commit c24e0f6

Browse files
author
Clemens Peters
committed
🐛 Fix echo message.
1 parent 4380a43 commit c24e0f6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

jmeter_cluster_create.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ kubectl get namespaces | grep -v NAME | awk '{print $1}'
2424
echo
2525

2626
tenant="$1"
27-
[ -n "$tenant" ] || read 'Enter the name of the new tenant unique name, this will be used to create the namespace' tenant
27+
if [ -z "$tenant" ]
28+
then
29+
echo "Enter the name of the new tenant unique name, this will be used to create the namespace"
30+
read tenant
31+
fi
2832

2933
echo
3034

0 commit comments

Comments
 (0)