Skip to content

Commit

Permalink
ops(install.sh): fix reNgine not installing using WSL
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonymousWP committed Sep 23, 2023
1 parent f5f3c22 commit 53f6434
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,9 @@ tput setaf 4;
echo "#########################################################################"
echo "Checking Docker status"
echo "#########################################################################"
if systemctl is-active docker >/dev/null 2>&1; then
if docker info >/dev/null 2>&1; then
tput setaf 4;
echo "Docker is running."
elif service docker status > /dev/null 2>&1; then
tput setaf 4;
echo "Docker is running"
else
tput setaf 1;
echo "Docker is not running. Please run docker and try again."
Expand Down

0 comments on commit 53f6434

Please sign in to comment.