Browse Source

added csv download code

pull/3568/head
Daniel Gibbs 4 years ago
parent
commit
67443747d4
  1. 7
      lgsm/functions/check_deps.sh

7
lgsm/functions/check_deps.sh

@ -283,6 +283,13 @@ fn_deps_detector(){
info_distro.sh
if [ ! -f "${datadir}/${distroid}-${distroversion}.csv" ]; then
fn_fetch_config "lgsm/data" "${distroid}-${distroversion}.csv" "${datadir}" "${distroid}-${distroversion}.csv" "${chmodx}" "nochmodx" "norun" "noforcedl" "nomd5"
# shellcheck source=/dev/null
source "${configdirserver}/common.cfg"
fi
# Select Distro
dependencyinstall=$(awk -F, '$1=="install" {$1=""; print $0}' "${datadir}/${distroid}-${distroversion}.csv")
dependencyall=$(awk -F, '$1=="all" {$1=""; print $0}' "${datadir}/${distroid}-${distroversion}.csv")

Loading…
Cancel
Save