Fixed configs path normalize
Publish PHP Package / docker (push) Successful in 8s Details

This commit is contained in:
madpwnhammer 2025-02-27 14:31:28 +03:00
parent 19038665c1
commit 67eb05b65d
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ function validate_flt_class(\taskman\ConfigFetchResult $fetch_result, \taskman\C
if(strpos($conf_path, '@') === 0)
$conf_path = substr($conf_path, 1) . '.conf.js';
$conf_path = \taskman\normalize_path(\taskman\config_real_path($config_globals->base_dirs, $conf_path), true);
$conf_path = \taskman\normalize_path(\taskman\config_real_path($config_globals->base_dirs, $conf_path), false);
$conf_cache = $fetch_result->getByPath($conf_path);
}