Skip to content

Commit

Permalink
better user msgs
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitamendelbaum committed May 20, 2018
1 parent 0c76265 commit 2122509
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions strato.sh
Expand Up @@ -27,7 +27,7 @@ function stop {
}

function getCompose {
echo "Getting docker-compose.yml from the latest stable release"
echo "Downloading the latest stable version of docker-compose.yml"
curl -s -L https://github.com/blockapps/strato-getting-started/releases/latest | egrep -o '/blockapps/strato-getting-started/releases/download/build-[0-9]*/docker-compose.yml' | wget --base=http://github.com/ -i - -O docker-compose.yml
}

Expand Down Expand Up @@ -182,7 +182,7 @@ if [ ! -f docker-compose.yml ]
then
getCompose
else
echo -e "${RED}Using the existing docker-compose.yml (to download the latest - remove the file and restart the script)${NC}"
echo -e "${RED}Using the existing docker-compose.yml (to download the most recent stable version - remove the file and restart the script)${NC}"
fi
docker-compose -f docker-compose.yml -p strato up -d
exit 0;

0 comments on commit 2122509

Please sign in to comment.