diff --git a/install.sh b/install.sh index b45d3212..4545720f 100644 --- a/install.sh +++ b/install.sh @@ -1,12 +1,7 @@ #!/bin/bash -read -p "Do you want to remove the local blinko-website image? (y/n): " USER_INPUT -if [[ "$USER_INPUT" == "y" || "$USER_INPUT" == "Y" ]]; then - echo "Removing the local blinko-website image..." - docker rmi -f blinkospace/blinko || echo "No existing blinko-website image to remove." -else - echo "Skipping the removal of the local blinko-website image." -fi +echo "Remove the local blinko-website image..." +docker rmi -f blinkospace/blinko || echo "No existing blinko-website image to remove." echo "Pull up the latest blinko mirror image..."