From 8aa4d8b8b7b639d6ad3e0c925ea0804d62d78cbf Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Wed, 17 Apr 2019 18:26:54 -0400 Subject: [PATCH] fix build deps script syntax --- install-minetest-build-deps.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install-minetest-build-deps.sh b/install-minetest-build-deps.sh index c3fdb38..eaed69c 100644 --- a/install-minetest-build-deps.sh +++ b/install-minetest-build-deps.sh @@ -22,19 +22,19 @@ sleep 1 echo this_dnf="" if [ -f "`command -v dnf`" ]; then - this_dnf = "dnf" + this_dnf="dnf" else if [ -f "`command -v yum`" ]; then - this_dnf = "yum" + this_dnf="yum" echo "WARNING: dnf not found, reverting to yum." fi fi this_apt="" if [ -f "`command -v apt`" ]; then - this_apt = "apt" + this_apt="apt" else if [ -f "`command -v apt-get`" ]; then - this_apt = "apt-get" + this_apt="apt-get" echo "WARNING: apt not found, reverting to apt-get." fi fi