Fix missing methods (#1275)

Some Heimdall apps uses method simplexml_load_string() which depends on php-xml package. Since Heimdall uses php 7.4 I added such dependency.
This commit is contained in:
LordXaosa 2023-03-31 00:37:54 +03:00 committed by GitHub
parent 3b2c81cf1c
commit ca8ed4f5cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

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