Fix missing methods

Some Heimdall apps uses method simplexml_load_string() which depends on php-xml package. Since Heimdall uses php 7.4 I added such dependency.
pull/1275/head
LordXaosa 2 years ago committed by GitHub
parent 3b2c81cf1c
commit 7b1e24581d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      install/heimdalldashboard-install.sh

@ -23,6 +23,7 @@ msg_info "Installing PHP"
$STD apt-get install -y php $STD apt-get install -y php
$STD apt-get install -y php-sqlite3 $STD apt-get install -y php-sqlite3
$STD apt-get install -y php-zip $STD apt-get install -y php-zip
$STD apt-get install php7.4-xml
msg_ok "Installed PHP" msg_ok "Installed PHP"
RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/Heimdall/releases/latest" | awk '/tag_name/{print $4;exit}' FS='[""]') RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/Heimdall/releases/latest" | awk '/tag_name/{print $4;exit}' FS='[""]')

Loading…
Cancel
Save