Skip to content

Commit

Permalink
chore: minor fix for 'npm run e2e:localmode'
Browse files Browse the repository at this point in the history
  • Loading branch information
ma-efremoff committed Oct 18, 2023
1 parent e3f6d23 commit c91bb7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui/scripts/dev.localmode-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ if [ $? -ne 0 ]; then
echo -e "\n\nrun_local_cluster.sh is downloaded, to run your cluster use command:"
echo -e " ./run_local_cluster.sh --yt-version dev --docker-hostname $(hostname) --fqdn localhost --node-count 2 \n"

read -p "Do you want to start local cluster cluster? [Yn]: " needToStart
if [ "${needToStart}" = "y" -o "${needToStart}" = "Y" ]; then
read -p "Do you want to start local cluster? [Yn]: " needToStart
if [ "${needToStart}" = "" -o "${needToStart}" = "y" -o "${needToStart}" = "Y" ]; then
./run_local_cluster.sh --stop
./run_local_cluster.sh --yt-version dev --docker-hostname $(hostname) --fqdn localhost --node-count 2
else
Expand Down

0 comments on commit c91bb7d

Please sign in to comment.