fixes to start and update bash scripts

This commit is contained in:
Michael Feng
2023-04-04 11:40:58 -07:00
parent 1dd2dcc2a3
commit 8eb486caf6
2 changed files with 3 additions and 3 deletions

View File

@@ -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
# =============================================

View File

@@ -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
}