Skip to content

Commit

Permalink
fix: don't hide error about Docker not running
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemarsden committed Jan 23, 2025
1 parent 1660cb1 commit 41ee5ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ check_docker_sudo() {
if timeout 10 sudo docker ps >/dev/null 2>&1; then
echo "true"
else
echo "Docker is not running or not installed"
echo "Docker is not running or not installed. Please start Docker!" >&2
exit 1
fi
fi
Expand Down

0 comments on commit 41ee5ed

Please sign in to comment.