fix small bug in install steam fct

This commit is contained in:
Francois B 2018-03-25 22:34:36 +02:00
parent 04caca6abd
commit ba6abe317d

View file

@ -162,13 +162,13 @@ function installGamesMenu () {
# Steam (Menu only, due to licence agreement) # Steam (Menu only, due to licence agreement)
# #
function installSteamMenu () { 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" "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" "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" "accepting steam licence 3/3"
installPackage apt steam installPackage apt steam
} }