mirror of
https://github.com/UnRAIDES/unRAID-NerdTools
synced 2025-04-05 05:30:55 +00:00
async & fix dependencies
This commit is contained in:
parent
9854f3f6cc
commit
f472bfb228
|
@ -67,7 +67,7 @@ foreach ($pkgs_github_array as $pkg_github) {
|
|||
|
||||
$pkg = [
|
||||
'name' => str_replace("_nerdtools.txz",".txz",$pkg_github['name']) , // add full package name
|
||||
'dependencies' => $depends_file_array[$pkg_name] ? str_replace(array(" ",","), array("",", "), $depends_file_array[$pkg_name]) : '', // add package name only
|
||||
'dependencies' => $depends_file_array[$pkg_name] ?? "" ? str_replace(array(" ",","), array("",", "), $depends_file_array[$pkg_name]) : '',
|
||||
'pkgname' => $pkg_name, // add package name only
|
||||
'pkgnver' => $pkg_nver, // add package name with underscored version
|
||||
'pkgversion' => $pkg_version, // add package name with raw version
|
||||
|
|
|
@ -135,6 +135,9 @@ function Apply() {
|
|||
|
||||
function checkDepends() {
|
||||
try {
|
||||
$.ajaxSetup({
|
||||
async: false
|
||||
});
|
||||
$.getJSON('/plugins/NerdTools/include/CheckDepends.php', function(data) {
|
||||
console.log(data)
|
||||
$.each(data,function(index, value){
|
||||
|
|
Loading…
Reference in New Issue
Block a user