From 2aa2214810d51179c45d7e8a23a8071fda36a025 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 4 Oct 2010 12:23:29 +0200 Subject: [PATCH] scripts/checkdeps: fix script for using on fedora Signed-off-by: Stephan Raue --- scripts/checkdeps | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/checkdeps b/scripts/checkdeps index 68e4b01761..c151a8bd1d 100755 --- a/scripts/checkdeps +++ b/scripts/checkdeps @@ -65,7 +65,7 @@ if [ -n "$need" ]; then elif [ -f /etc/fedora-release -a -n "`which yum 2>/dev/null`" ]; then echo "**** You seem to use a fedora system ****" read -p "would you like to install the needed tools ? (y/n) " ans - [ "$ans" = "y" ] && sudo urpmi $need_pkg + [ "$ans" = "y" ] && sudo yum install $need_pkg else echo "********" exit 1