Browse Source

fix(terraria): remove broken dependency requirement

pull/3745/merge
Daniel Gibbs 2 years ago
parent
commit
11078b3bf7
  1. 2
      lgsm/data/ubuntu-21.04.csv
  2. 2
      lgsm/data/ubuntu-21.10.csv
  3. 2
      lgsm/data/ubuntu-22.04.csv
  4. 2
      lgsm/functions/check_deps.sh
  5. 4
      lgsm/functions/command_dev_query_raw.sh
  6. 18
      lgsm/functions/command_fastdl.sh
  7. 2
      lgsm/functions/mods_list.sh

2
lgsm/data/ubuntu-21.04.csv

@ -104,7 +104,7 @@ squad
st
stn
sven,libssl1.1:i386,zlib1g:i386
terraria,libsdl
terraria
tf2,libcurl4-gnutls-dev:i386
tfc
ti

Can't render this file because it has a wrong number of fields in line 2.

2
lgsm/data/ubuntu-21.10.csv

@ -102,7 +102,7 @@ squad
st
stn
sven,libssl1.1:i386,zlib1g:i386
terraria,libsdl
terraria
tf2,libcurl4-gnutls-dev:i386
tfc
ti

Can't render this file because it has a wrong number of fields in line 2.

2
lgsm/data/ubuntu-22.04.csv

@ -102,7 +102,7 @@ squad
st
stn
sven,libssl1.1:i386,zlib1g:i386
terraria,libsdl
terraria
tf2,libcurl4-gnutls-dev:i386
tfc
ti

Can't render this file because it has a wrong number of fields in line 2.

2
lgsm/functions/check_deps.sh

@ -337,7 +337,7 @@ fi
if [ -f "${datadir}/${distroid}-${distroversioncsv}.csv" ]; then
depall=$(awk -F, '$1=="all" {$1=""; print $0}' "${datadir}/${distroid}-${distroversioncsv}.csv")
depsteamcmd=$(awk -F, '$1=="steamcmd" {$1=""; print $0}' "${datadir}/${distroid}-${distroversioncsv}.csv")
depshortname=$(awk -v shortname="$shortname" -F, '$1==shortname {$1=""; print $0}' "${datadir}/${distroid}-${distroversioncsv}.csv")
depshortname=$(awk -v shortname="${shortname}" -F, '$1==shortname {$1=""; print $0}' "${datadir}/${distroid}-${distroversioncsv}.csv")
# Generate array of missing deps.
array_deps_missing=()

4
lgsm/functions/command_dev_query_raw.sh

@ -210,10 +210,10 @@ echo -e ""
echo -e "${lightgreen}Gamedig Raw Output${default}"
echo -e "================================="
echo -e ""
if [ ! "$(command -v gamedig 2>/dev/null)" ]; then
if [ ! "$(command -v gamedig 2> /dev/null)" ]; then
fn_print_failure_nl "gamedig not installed"
fi
if [ ! "$(command -v jq 2>/dev/null)" ]; then
if [ ! "$(command -v jq 2> /dev/null)" ]; then
fn_print_failure_nl "jq not installed"
fi
for queryip in "${queryips[@]}"; do

18
lgsm/functions/command_fastdl.sh

@ -24,7 +24,7 @@ luafastdlfile="lgsm_cl_force_fastdl.lua"
luafastdlfullpath="${luasvautorundir}/${luafastdlfile}"
# Check if bzip2 is installed.
if [ ! "$(command -v bzip2 2>/dev/null)" ]; then
if [ ! "$(command -v bzip2 2> /dev/null)" ]; then
fn_print_fail "bzip2 is not installed"
fn_script_log_fatal "bzip2 is not installed"
core_exit.sh
@ -133,7 +133,7 @@ fn_human_readable_file_size() {
local factor="${item%:*}"
local abbrev="${item#*:}"
if [[ "${bytes}" -ge "${factor}" ]]; then
size=$(bc -l <<<"${bytes} / ${factor}")
size=$(bc -l <<< "${bytes} / ${factor}")
printf "%.*f %s\n" "${precision}" "${size}" "${abbrev}"
break
fi
@ -161,7 +161,7 @@ fn_fastdl_preview() {
tput rc
tput el
echo -e "gathering ${allowed_extention} : ${fileswc}..."
echo -e "${ext}" >>"${tmpdir}/fastdl_files_to_compress.txt"
echo -e "${ext}" >> "${tmpdir}/fastdl_files_to_compress.txt"
done < <(find . -type f -iname "${allowed_extention}")
if [ ${fileswc} != 0 ]; then
fn_print_ok_eol_nl
@ -193,7 +193,7 @@ fn_fastdl_preview() {
tput rc
tput el
echo -e "gathering ${directory} ${allowed_extention} : ${fileswc}..."
echo -e "${ext}" >>"${tmpdir}/fastdl_files_to_compress.txt"
echo -e "${ext}" >> "${tmpdir}/fastdl_files_to_compress.txt"
done < <(find "${systemdir}/${directory}" -type f -iname "${allowed_extention}")
tput rc
tput el
@ -210,7 +210,7 @@ fn_fastdl_preview() {
if [ -f "${tmpdir}/fastdl_files_to_compress.txt" ]; then
echo -e "calculating total file size..."
fn_sleep_time
totalfiles=$(wc -l <"${tmpdir}/fastdl_files_to_compress.txt")
totalfiles=$(wc -l < "${tmpdir}/fastdl_files_to_compress.txt")
# Calculates total file size.
while read -r dufile; do
filesize=$(stat -c %s "${dufile}")
@ -221,7 +221,7 @@ fn_fastdl_preview() {
fn_script_log_fatal "Calculating total file size."
core_exit.sh
fi
done <"${tmpdir}/fastdl_files_to_compress.txt"
done < "${tmpdir}/fastdl_files_to_compress.txt"
else
fn_print_fail_eol_nl "generating file list"
fn_script_log_fatal "Generating file list."
@ -304,12 +304,12 @@ fn_fastdl_gmod() {
fi
fi
if [ -f "${tmpdir}/fastdl_files_to_compress.txt" ]; then
totalfiles=$(wc -l <"${tmpdir}/fastdl_files_to_compress.txt")
totalfiles=$(wc -l < "${tmpdir}/fastdl_files_to_compress.txt")
# Calculates total file size.
while read -r dufile; do
filesize=$(du -b "${dufile}" | awk '{ print $1 }')
filesizetotal=$((filesizetotal + filesize))
done <"${tmpdir}/fastdl_files_to_compress.txt"
done < "${tmpdir}/fastdl_files_to_compress.txt"
fi
}
@ -396,7 +396,7 @@ fn_fastdl_gmod_dl_enforcer() {
touch "${luafastdlfullpath}"
# Read all filenames and put them into a lua file at the right path.
while read -r line; do
echo -e "resource.AddFile( \"${line}\" )" >>"${luafastdlfullpath}"
echo -e "resource.AddFile( \"${line}\" )" >> "${luafastdlfullpath}"
done < <(find "${fastdldir:?}" \( -type f ! -name "*.bz2" \) -printf '%P\n')
exitcode=$?
if [ "${exitcode}" != 0 ]; then

2
lgsm/functions/mods_list.sh

@ -96,7 +96,7 @@ oxidesdtdlatestlink=$(curl --connect-timeout 10 -sL https://api.github.com/repos
# Valheim Plus
valeimpluslatestlink=$(curl --connect-timeout 10 -sL https://api.github.com/repos/valheimPlus/ValheimPlus/releases/latest | jq -r '.assets[]|select(.browser_download_url | contains("UnixServer.tar.gz")) | .browser_download_url')
# Valheim BepInEx
bepinexvhlatestlink=$(curl --connect-timeout 10 -sL "https://valheim.thunderstore.io/api/experimental/package/denikson/BepInExPack_Valheim/" -H "accept: application/json" | jq -r '.latest.download_url' )
bepinexvhlatestlink=$(curl --connect-timeout 10 -sL "https://valheim.thunderstore.io/api/experimental/package/denikson/BepInExPack_Valheim/" -H "accept: application/json" | jq -r '.latest.download_url')
# Define mods information (required)

Loading…
Cancel
Save