Browse Source

Added error checking

pull/549/head
Daniel Gibbs 9 years ago
parent
commit
ff4b712f47
  1. 44
      functions/fn_csgofix

44
functions/fn_csgofix

@ -22,31 +22,39 @@ fi
fn_csgofixes(){ fn_csgofixes(){
# Fixes the following error: # Fixes the following error:
# Error parsing BotProfile.db - unknown attribute 'Rank". # Error parsing BotProfile.db - unknown attribute 'Rank".
if ! grep -q "//Rank" "${systemdir}/botprofile.db" ; then if ! grep -q "//Rank" "${systemdir}/botprofile.db" > /dev/null 2>&1; then
echo "Applying botprofile.db fix."
sleep 1
echo ""
echo "botprofile.db fix removes the following error from appearing on the console:" echo "botprofile.db fix removes the following error from appearing on the console:"
echo " Error parsing BotProfile.db - unknown attribute 'Rank" echo " Error parsing BotProfile.db - unknown attribute 'Rank"
sleep 1 sleep 1
fn_printdots "Applying botprofile.db fix." sed -i 's/\tRank/\t\/\/Rank/g' "${systemdir}/botprofile.db" > /dev/null 2>&1
sleep 1 if [[ $? != 0 ]]; then
fn_printinfo "Applying botprofile.db fix." fn_printfailure "Applying botprofile.db fix."
sleep 1 else
sed -i 's/\tRank/\t\/\/Rank/g' "${systemdir}/botprofile.db" fn_printcomplete "Applying botprofile.db fix."
fi
echo -en "\n" echo -en "\n"
echo "" echo ""
fi fi
# Fixes errors simular to the following: # Fixes errors simular to the following:
# Unknown command "cl_bobamt_vert". # Unknown command "cl_bobamt_vert".
if ! grep -q "//exec default" "${servercfgdir}/valve.rc" || ! grep -q "//exec joystick" "${servercfgdir}/valve.rc"; then if ! grep -q "//exec default" "${servercfgdir}/valve.rc" > /dev/null 2>&1 || ! grep -q "//exec joystick" "${servercfgdir}/valve.rc" > /dev/null 2>&1; then
echo "Applying valve.rc fix."
sleep 1
echo ""
echo "valve.rc fix removes the following error from appearing on the console:" echo "valve.rc fix removes the following error from appearing on the console:"
echo " Unknown command \"cl_bobamt_vert\"" echo " Unknown command \"cl_bobamt_vert\""
sleep 1 sleep 1
fn_printdots "Applying valve.rc fix." sed -i 's/exec default.cfg/\/\/exec default.cfg/g' "${servercfgdir}/valve.rc" > /dev/null 2>&1
sleep 1 sed -i 's/exec joystick.cfg/\/\/exec joystick.cfg/g' "${servercfgdir}/valve.rc" > /dev/null 2>&1
fn_printinfo "Applying valve.rc fix." if [[ $? != 0 ]]; then
sleep 1 fn_printfailure "Applying valve.rc fix."
sed -i 's/exec default.cfg/\/\/exec default.cfg/g' "${servercfgdir}/valve.rc" else
sed -i 's/exec joystick.cfg/\/\/exec joystick.cfg/g' "${servercfgdir}/valve.rc" fn_printcomplete "Applying valve.rc fix."
fi
echo -en "\n" echo -en "\n"
echo "" echo ""
fi fi
@ -57,13 +65,17 @@ if [ -f "${systemdir}/subscribed_collection_ids.txt" ]||[ -f "${systemdir}/subsc
echo "workshopmapfix fixes the following error:" echo "workshopmapfix fixes the following error:"
echo " http://forums.steampowered.com/forums/showthread.php?t=3170366" echo " http://forums.steampowered.com/forums/showthread.php?t=3170366"
sleep 1 sleep 1
fn_printdots "Applying workshopmap fix." echo ""
sleep 1 echo "Applying workshopmap fix."
fn_printinfo "Applying workshopmap fix."
sleep 1 sleep 1
rm -f "${systemdir}/subscribed_collection_ids.txt" rm -f "${systemdir}/subscribed_collection_ids.txt"
rm -f "${systemdir}/subscribed_file_ids.txt" rm -f "${systemdir}/subscribed_file_ids.txt"
rm -f "${systemdir}/ugc_collection_cache.txt" rm -f "${systemdir}/ugc_collection_cache.txt"
if [[ $? != 0 ]]; then
fn_printfailure "Applying workshopmap fix."
else
fn_printcomplete "Applying workshopmap fix."
fi
echo -en "\n" echo -en "\n"
echo "" echo ""
fi fi

Loading…
Cancel
Save