From ba6abe317df6858add9ed8fda880091dc52f2502 Mon Sep 17 00:00:00 2001
From: Francois B <shakasan@sirenacorp.be>
Date: Sun, 25 Mar 2018 22:34:36 +0200
Subject: [PATCH] fix small bug in install steam fct

---
 install_functions.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/install_functions.sh b/install_functions.sh
index 881bab4..57ae0a8 100644
--- a/install_functions.sh
+++ b/install_functions.sh
@@ -162,13 +162,13 @@ function installGamesMenu () {
 # Steam (Menu only, due to licence agreement)
 #
 function installSteamMenu () {
-  rundCmd "echo steam	steam/purge	note | sudo debconf-set-selections" \
+  runCmd "echo steam	steam/purge	note | sudo debconf-set-selections" \
         "accepting steam licence"
 
-  rundCmd "echo steam	steam/license	note | sudo debconf-set-selections" \
+  runCmd "echo steam	steam/license	note | sudo debconf-set-selections" \
           "accepting steam licence 2/3"
 
-  rundCmd "echo steam	steam/question	select	I AGREE | sudo debconf-set-selections" \
+  runCmd "echo steam	steam/question	select	I AGREE | sudo debconf-set-selections" \
           "accepting steam licence 3/3"
   installPackage apt steam
 }