From 8eb486caf64d7733033b8ea6bb43a429108af5da Mon Sep 17 00:00:00 2001 From: Michael Feng Date: Tue, 4 Apr 2023 11:40:58 -0700 Subject: [PATCH] fixes to start and update bash scripts --- bash_scripts/hummingbot-start.sh | 4 ++-- bash_scripts/hummingbot-update.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bash_scripts/hummingbot-start.sh b/bash_scripts/hummingbot-start.sh index 4506682..620ebf8 100755 --- a/bash_scripts/hummingbot-start.sh +++ b/bash_scripts/hummingbot-start.sh @@ -10,10 +10,10 @@ echo docker ps -a echo echo -read -p " Enter the NAME of the Hummingbot instance to start or connect to (default = \"hummingbot-instance\") >>> " INSTANCE_NAME +read -p " Enter the NAME of the Hummingbot instance to start or connect to (default = \"hummingbot\") >>> " INSTANCE_NAME if [ "$INSTANCE_NAME" == "" ] then - INSTANCE_NAME="hummingbot-instance" + INSTANCE_NAME="hummingbot" fi echo # ============================================= diff --git a/bash_scripts/hummingbot-update.sh b/bash_scripts/hummingbot-update.sh index 9f4a992..a1b920b 100755 --- a/bash_scripts/hummingbot-update.sh +++ b/bash_scripts/hummingbot-update.sh @@ -120,7 +120,7 @@ execute_docker () { echo docker ps echo - echo "ℹ️ Run command \"./start.sh\" to connect to an instance." + echo "ℹ️ Run command \"./hummingbot-start.sh\" to connect to an instance." echo }