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

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=()

Loading…
Cancel
Save